Skip to content

Commit

Permalink
fix(STONEINTG-533): fix parsing error in SLO 5 expression
Browse files Browse the repository at this point in the history
Also change SLO numer from 3 to 5

Signed-off-by: Jennefer Cullinan <[email protected]>
  • Loading branch information
jencull committed Oct 26, 2023
1 parent f0d36f0 commit 06d7fe3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions config/grafana/dashboards/integration-service-dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -439,7 +439,7 @@
"y": 9
},
"type": "graph",
"title": "#3 Latency of Release Creation",
"title": "#5 Latency of Release Creation",
"thresholds": [
{
"$$hashKey": "object:1475",
Expand Down Expand Up @@ -544,7 +544,7 @@
"y": 9
},
"type": "timeseries",
"title": "[Violations] #3 Latency of Release Creation",
"title": "[Violations] #5 Latency of Release Creation",
"pluginVersion": "9.1.6",
"description": "90% of requests must take less than 10 sec. Measure release creation latency from end of testing to release created ",
"fieldConfig": {
Expand Down 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_bucket[$__rate_interval])) by (job)*100",
"interval": "",
"legendFormat": "% of requests within required latency time",
"range": true,
Expand Down

0 comments on commit 06d7fe3

Please sign in to comment.