Skip to content
This repository has been archived by the owner on Feb 22, 2022. It is now read-only.

Commit

Permalink
[stable/prometheus-operator] Fix typo in query for k8s-coredns dashboard
Browse files Browse the repository at this point in the history
Fixed a typo in one of the queries for the "Responses (size, udp)" where
the timeseries for the 90th percentile was not showing up because of a
missing tiled in the query.

Signed-off-by: Lukas Grossar <[email protected]>
  • Loading branch information
Lukas Grossar committed Oct 17, 2019
1 parent f14133f commit 8fc7e9c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion stable/prometheus-operator/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name: prometheus-operator
sources:
- https://github.com/coreos/prometheus-operator
- https://coreos.com/operators/prometheus
version: 6.18.2
version: 6.18.3
appVersion: 0.32.0
home: https://github.com/coreos/prometheus-operator
keywords:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ data:
"step": 40
},
{
"expr": "histogram_quantile(0.90, sum(rate(coredns_dns_response_size_bytes_bucket{instance=\"$instance\",proto=\"udp\"}[5m])) by (le,proto)) ",
"expr": "histogram_quantile(0.90, sum(rate(coredns_dns_response_size_bytes_bucket{instance=~\"$instance\",proto=\"udp\"}[5m])) by (le,proto)) ",
"intervalFactor": 2,
"legendFormat": "{{`{{proto}}`}}:90%",
"refId": "B",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -897,7 +897,7 @@ data:
"step": 40
},
{
"expr": "histogram_quantile(0.90, sum(rate(coredns_dns_response_size_bytes_bucket{instance=\"$instance\",proto=\"udp\"}[5m])) by (le,proto)) ",
"expr": "histogram_quantile(0.90, sum(rate(coredns_dns_response_size_bytes_bucket{instance=~\"$instance\",proto=\"udp\"}[5m])) by (le,proto)) ",
"intervalFactor": 2,
"legendFormat": "{{`{{proto}}`}}:90%",
"refId": "B",
Expand Down

0 comments on commit 8fc7e9c

Please sign in to comment.