forked from PinSpace-Org/GistPin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathregional-latency.json
More file actions
37 lines (37 loc) 路 1.11 KB
/
Copy pathregional-latency.json
File metadata and controls
37 lines (37 loc) 路 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
{
"version": 1,
"dashboard": {
"title": "GistPin Regional Latency Dashboard",
"refresh": "1m",
"panels": [
{
"title": "P50 Latency by Region",
"type": "timeseries",
"metric": "gistpin:api_latency_p50:by_region",
"legend": { "displayMode": "table", "placement": "right" }
},
{
"title": "P95 Latency by Region",
"type": "timeseries",
"metric": "gistpin:api_latency_p95:by_region"
},
{
"title": "P99 Latency by Region",
"type": "timeseries",
"metric": "gistpin:api_latency_p99:by_region",
"thresholds": [{ "value": 2, "color": "yellow" }, { "value": 3, "color": "red" }]
},
{
"title": "Regional Latency Heatmap",
"type": "heatmap",
"metric": "rate(http_request_duration_seconds_bucket{job='gistpin-backend'}[5m])"
},
{
"title": "Regional SLA Compliance (P99 < 3s)",
"type": "stat",
"metric": "count(gistpin:api_latency_p99:by_region < 3) / count(gistpin:api_latency_p99:by_region)",
"unit": "percentunit"
}
]
}
}