Skip to content

Commit

Permalink
Merge pull request #391 from jencull/stoneintg-533
Browse files Browse the repository at this point in the history
fix(STONEINTG-533): fix parsing error in SLO 5 expression
  • Loading branch information
jencull authored Oct 27, 2023
2 parents 18eab34 + 7d15911 commit 7e00641
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,7 @@
{
"editorMode": "code",
"exemplar": true,
"expr": "sum(rate(release_latency_seconds_bucket{le=\"10\"}[$__rate_interval])) by (job) / sum(rate(release_latency_seconds_bucket[$__rate_interval])) by (job)*100",
"expr": "sum(rate(release_latency_seconds_bucket{le=\"10\"}[$__rate_interval])) by (job) / sum(rate(release_latency_seconds_count[$__rate_interval])) by (job)*100",
"interval": "",
"legendFormat": "% of requests within required latency time",
"range": true,
Expand Down

0 comments on commit 7e00641

Please sign in to comment.