mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-25 14:28:20 +01:00
ff74472621
vmui: support predefined dashboards in json format See https://github.com/VictoriaMetrics/VictoriaMetrics/tree/master/app/vmselect/vmui/dashboards
30 lines
720 B
JSON
30 lines
720 B
JSON
{
|
|
"title": "per-job resource usage",
|
|
"rows": [
|
|
{
|
|
"panels": [
|
|
{
|
|
"title": "Per-job CPU usage",
|
|
"width": 6,
|
|
"expr": ["sum(rate(process_cpu_seconds_total)) by (job)"]
|
|
},
|
|
{
|
|
"title": "Per-job RSS usage",
|
|
"width": 6,
|
|
"expr": ["sum(process_resident_memory_bytes) by (job)"]
|
|
},
|
|
{
|
|
"title": "Per-job disk read",
|
|
"width": 6,
|
|
"expr": ["sum(rate(process_io_storage_read_bytes_total)) by (job)"]
|
|
},
|
|
{
|
|
"title": "Per-job disk write",
|
|
"width": 6,
|
|
"expr": ["sum(rate(process_io_storage_written_bytes_total)) by (job)"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|