24 lines
532 B
JSON
24 lines
532 B
JSON
{
|
|
"dashboard": {
|
|
"title": "DevOps Windows Dashboard",
|
|
"panels": [
|
|
{
|
|
"title": "Requêtes HTTP",
|
|
"type": "graph",
|
|
"targets": [{
|
|
"expr": "rate(http_requests_total[5m])",
|
|
"legendFormat": "{{method}} {{endpoint}}"
|
|
}]
|
|
},
|
|
{
|
|
"title": "Latence",
|
|
"type": "graph",
|
|
"targets": [{
|
|
"expr": "histogram_quantile(0.95, rate(http_request_duration_seconds_bucket[5m]))",
|
|
"legendFormat": "p95"
|
|
}]
|
|
}
|
|
]
|
|
}
|
|
}
|