Skip to content

Commit

Permalink
chore(grafana): fix unit for response time dashboard
Browse files Browse the repository at this point in the history
  • Loading branch information
dtfiedler authored and djwhitt committed Jan 14, 2025
1 parent 12ec569 commit 2df0fb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion monitoring/grafana/dashboards/default.json
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@
"datasource": "prometheus",
"editorMode": "code",
"exemplar": true,
"expr": "sum(rate(http_request_duration_seconds_sum{job=\"ar-io-node\"}[$__rate_interval])) \n/\nsum(rate(http_request_duration_seconds_count{job=\"ar-io-node\"}[$__rate_interval]))",
"expr": "sum(rate(http_request_duration_seconds_sum{job=\"ar-io-node\"}[$__rate_interval])) / sum(rate(http_request_duration_seconds_count{job=\"ar-io-node\"}[$__rate_interval])) * 1000",
"format": "time_series",
"instant": false,
"legendFormat": "Average Response Time (ms)",
Expand Down

0 comments on commit 2df0fb6

Please sign in to comment.