Skip to content

Commit

Permalink
Merge pull request #385 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 1813d35 + 06d7fe3 commit 18eab34
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 18eab34

Please sign in to comment.