Skip to content

Commit

Permalink
updating metric names to remove _total suffix
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickhuie19 committed Nov 13, 2024
1 parent 8043a1e commit 8740c0b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions observability-lib/dashboards/keystone-workflows/component.go
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ func engine(p *Props) []*grafana.Panel {
Height: 8,
Query: []grafana.Query{
{
Expr: `platform_engine_workflow_errors_total{` + p.QueryFilters + `}`,
Expr: `platform_engine_workflow_errors{` + p.QueryFilters + `}`,
Legend: "",
},
},
Expand Down Expand Up @@ -433,7 +433,7 @@ func engine(p *Props) []*grafana.Panel {
Height: 8,
Query: []grafana.Query{
{
Expr: `platform_engine_capabilities_count_total{` + p.QueryFilters + `}`,
Expr: `platform_engine_capabilities_count{` + p.QueryFilters + `}`,
Legend: "",
},
},
Expand All @@ -455,7 +455,7 @@ func registrySyncer(p *Props) []*grafana.Panel {
Height: 8,
Query: []grafana.Query{
{
Expr: `platform_registrysyncer_sync_failures_total{` + p.QueryFilters + `}`,
Expr: `platform_registrysyncer_sync_failures{` + p.QueryFilters + `}`,
Legend: "",
},
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@
"id": 4,
"targets": [
{
"expr": "platform_engine_workflow_errors_total{env=~\"${env}\", cluster=~\"${cluster}\"}",
"expr": "platform_engine_workflow_errors{env=~\"${env}\", cluster=~\"${cluster}\"}",
"format": "",
"legendFormat": "",
"refId": ""
Expand Down

0 comments on commit 8740c0b

Please sign in to comment.