https://github.com/hekike/outlier-istio
Root cause analysis tool for Kubernetes Istio.
https://github.com/hekike/outlier-istio
istio kubernetes prometheus
Last synced: 3 months ago
JSON representation
Root cause analysis tool for Kubernetes Istio.
- Host: GitHub
- URL: https://github.com/hekike/outlier-istio
- Owner: hekike
- License: mit
- Created: 2018-10-17T01:55:17.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-03-12T14:19:55.000Z (over 5 years ago)
- Last Synced: 2025-03-25T09:22:02.958Z (4 months ago)
- Topics: istio, kubernetes, prometheus
- Language: Go
- Homepage:
- Size: 122 KB
- Stars: 5
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# outlier-istio
[](https://circleci.com/gh/hekike/outlier-istio)
Root cause analysis tool for Kubernetes Istio.
Outlier detection with approximate median latency for Istio workloads.


## Components
- Frontend: https://github.com/hekike/outlier-web
## Install
**Requirements**
- Istio (with Prometheus)
```sh
kubectl create -f ./examples/istio/deployment.yaml
```**Test**
```sh
kubectl -n istio-system port-forward deployment/outlier-istio 8080
open http://localhost:8080
```### Config
**Environment variables**
- `PROMETHEUS_HOST`, optional, default: http://prometheus.istio-system.svc.cluster.local:9090
- `PORT`, optional, default: 8080## API
Inlined OpenAPI (Swagger).
### Requirements
https://goswagger.io
```sh
brew tap go-swagger/go-swagger
brew install go-swagger
```### Generate
```sh
swagger generate spec -o swagger.json
swagger serve swagger.json
```