Skip to content

Commit

Permalink
Merge pull request #1132 from mikenairn/fix_google_client_name_in_gra…
Browse files Browse the repository at this point in the history
…fana_dashboard

fix: Google dns provider metrics name key
  • Loading branch information
mikenairn authored Jan 29, 2025
2 parents b1653b0 + 10c79f7 commit 10f482b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/dashboards/dns-operator.json
Original file line number Diff line number Diff line change
Expand Up @@ -469,7 +469,7 @@
"uid": "${datasource}"
},
"editorMode": "code",
"expr": "histogram_quantile(0.99, sum by(le, client) (rate(http_client_request_latency_seconds_bucket{client=~\"aws|gcp|azure\",code=\"200\"}[15m])))",
"expr": "histogram_quantile(0.99, sum by(le, client) (rate(http_client_request_latency_seconds_bucket{client=~\"aws|google|azure\",code=\"200\"}[15m])))",
"legendFormat": "{{client}}:99%ile",
"range": true,
"refId": "A"
Expand All @@ -480,7 +480,7 @@
"uid": "${datasource}"
},
"editorMode": "code",
"expr": "histogram_quantile(0.95, sum by(le, client) (rate(http_client_request_latency_seconds_bucket{client=~\"aws|gcp|azure\",code=\"200\"}[15m])))",
"expr": "histogram_quantile(0.95, sum by(le, client) (rate(http_client_request_latency_seconds_bucket{client=~\"aws|google|azure\",code=\"200\"}[15m])))",
"hide": false,
"legendFormat": "{{client}}:95%ile",
"range": true,
Expand Down Expand Up @@ -571,7 +571,7 @@
"uid": "${datasource}"
},
"editorMode": "code",
"expr": "sum by (client, code) (rate(http_client_requests_total{client=~\"aws|gcp|azure\"}[15m]))",
"expr": "sum by (client, code) (rate(http_client_requests_total{client=~\"aws|google|azure\"}[15m]))",
"hide": false,
"legendFormat": "{{client}}:{{code}}",
"range": true,
Expand Down

0 comments on commit 10f482b

Please sign in to comment.