Skip to content

Commit

Permalink
fix(o11y): registered client metric is wrong (#285)
Browse files Browse the repository at this point in the history
  • Loading branch information
arein committed Nov 21, 2023
1 parent 4b34fa8 commit c442c03
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/monitoring/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -417,13 +417,13 @@ resource "grafana_dashboard" "at_a_glance" {
"uid" : grafana_data_source.prometheus.uid
},
"exemplar" : true,
"expr" : "sum(registered_clients{})",
"expr" : "sum(increase(registered_clients{}[1h]))",
"interval" : "",
"legendFormat" : "",
"refId" : "Clients"
}
],
"title" : "Registered Clients",
"title" : "Registered Clients past 1h",
"type" : "timeseries"
},
{
Expand Down

0 comments on commit c442c03

Please sign in to comment.