{ "title": "Example", "rows": [ { "title": "Per-job resource usage", "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)" ] } ] }, { "title": "Free/used disk space", "panels": [ { "unit": "MB", "expr": [ "sum(vm_data_size_bytes{type!=\"indexdb\"}) / 1024 / 1024", "vm_free_disk_space_bytes / 1024 / 1024" ], "alias": [ "usage space", "free space" ] } ] } ] }