Skip to content

Commit

Permalink
Improve ADS monitoring panel (istio#28337)
Browse files Browse the repository at this point in the history
* Aggregate number of service and VS, as its the same accross instances

* Aggregate connected endpoints by pod, otherwise we get a line per
version which is noisy. We already have another panel dedicated to
per-version connections

Snapshot:
https://snapshot.raintank.io/dashboard/snapshot/Nxy5EDol0umcnlpz5x779jDFZd61JDr2?orgId=2
  • Loading branch information
howardjohn authored Oct 29, 2020
1 parent d13b044 commit 605be71
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions manifests/addons/dashboards/pilot-dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -1105,24 +1105,24 @@
"steppedLine": false,
"targets": [
{
"expr": "pilot_virt_services{app=\"istiod\"}",
"expr": "avg(pilot_virt_services{app=\"istiod\"})",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "Virtual Services",
"refId": "A"
},
{
"expr": "pilot_services{app=\"istiod\"}",
"expr": "avg(pilot_services{app=\"istiod\"})",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "Services",
"refId": "B"
},
{
"expr": "pilot_xds{app=\"istiod\"}",
"expr": "sum(pilot_xds{app=\"istiod\"}) by (pod)",
"format": "time_series",
"intervalFactor": 1,
"legendFormat": "Connected Endpoints",
"legendFormat": "Connected Endpoints {{pod}}",
"refId": "E"
}
],
Expand Down
Loading

0 comments on commit 605be71

Please sign in to comment.