Skip to content

Commit e8e507e

Browse files
Create grafana-dashboard.json
Signed-off-by: Corey Leath <corey22blue@hotmail.com>
1 parent 5c9bef0 commit e8e507e

1 file changed

Lines changed: 39 additions & 0 deletions

File tree

monitoring/grafana-dashboard.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"dashboard": {
3+
"id": null,
4+
"title": "HelixAgent Monitoring",
5+
"panels": [
6+
{
7+
"type": "graph",
8+
"title": "Request Rate",
9+
"targets": [
10+
{
11+
"expr": "rate(helixagent_request_count[5m])",
12+
"legendFormat": "{{method}} {{endpoint}}"
13+
}
14+
]
15+
},
16+
{
17+
"type": "graph",
18+
"title": "Request Latency",
19+
"targets": [
20+
{
21+
"expr": "histogram_quantile(0.95, sum(rate(helixagent_request_latency_seconds_bucket[5m])) by (le, endpoint))",
22+
"legendFormat": "95th percentile latency {{endpoint}}"
23+
}
24+
]
25+
},
26+
{
27+
"type": "stat",
28+
"title": "Total Requests",
29+
"targets": [
30+
{
31+
"expr": "sum(helixagent_request_count)"
32+
}
33+
]
34+
}
35+
],
36+
"schemaVersion": 27,
37+
"version": 1
38+
}
39+
}

0 commit comments

Comments
 (0)