Skip to content

Commit

Permalink
Fixes "All Dex requests" panel showing "No data" by increasing query …
Browse files Browse the repository at this point in the history
…interval to 2m. (#489)
  • Loading branch information
tuladhar authored Apr 10, 2024
1 parent 68b83c6 commit 4df757f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Fixed

- Fixes "All Dex requests" panel showing "No data" by increasing query interval to 2m.

## [3.10.3] - 2024-04-10

### Changed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -492,7 +492,7 @@
{
"datasource": "default",
"exemplar": true,
"expr": "sum(increase(http_requests_total{cluster_id=\"$cluster\",organization=~\"$organization\",app=\"dex\",handler!=\"/healthz\"}[1m])) by (handler, method, code)",
"expr": "sum(increase(http_requests_total{cluster_id=\"$cluster\",organization=~\"$organization\",app=\"dex\",handler!=\"/healthz\"}[2m])) by (handler, method, code)",
"format": "time_series",
"interval": "",
"intervalFactor": 1,
Expand Down

0 comments on commit 4df757f

Please sign in to comment.