Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
59 changes: 56 additions & 3 deletions grafana/dashboards/watchdog_metrics_dashboard.json
Original file line number Diff line number Diff line change
Expand Up @@ -134,25 +134,78 @@
"datasource": {
"name": "Prometheus"
},
"description": "Metrics: http_outgoing_request_duration_seconds\nQuestion answered: \"Are external dependencies becoming slow?\"",
"description": "Metrics: http_outgoing_request_duration_seconds\nQuestion answered: \"Are external dependencies becoming slow?\"\n\nVisualization: Heatmap\nRationale: Latency is a distribution, not a single average. A heatmap visualizes the distribution of request durations over time, making it easy to instantly spot bimodal patterns and long-tail outliers (like degraded downstream servers) that a simple line chart would compress or hide.",
"fieldConfig": {
"defaults": {
"custom": {
"hideFrom": {
"legend": false,
"tooltip": false,
"viz": false
},
"scaleDistribution": {
"type": "linear"
}
}
},
"overrides": []
},
"gridPos": {
"h": 8,
"w": 12,
"x": 12,
"y": 1
},
"id": 102,
"options": {
"calculate": false,
"cellGap": 1,
"color": {
"exponent": 0.5,
"fill": "dark-orange",
"mode": "scheme",
"reverse": false,
"scale": "exponential",
"scheme": "Oranges",
"steps": 64
},
"exemplars": {
"color": "rgba(255,0,255,0.7)"
},
"filterValues": {
"le": 1e-9
},
"legend": {
"show": true
},
"rowsFrame": {
"layout": "auto"
},
"tooltip": {
"mode": "single",
"showColorScale": false,
"yHistogram": true
},
"yAxis": {
"axisPlacement": "left",
"reverse": false,
"unit": "s"
}
},
"pluginVersion": "13.0.2",
"targets": [
{
"expr": "http_outgoing_request_duration_seconds_sum",
"expr": "sum(rate(http_outgoing_request_duration_seconds_bucket{server_id=~\"$server_id\"}[5m])) by (le)",
"format": "heatmap",
"legendFormat": "{{le}}",
"refId": "A",
"datasource": {
"name": "Prometheus"
}
}
],
"title": "1.2 Dependency Latency",
"type": "timeseries"
"type": "heatmap"
},
{
"collapsed": false,
Expand Down
Loading