Files
MokoCLI/monitoring/grafana/library-panels/docker-container-memory.json
T
Jonathan Miller 4ec51e262b feat: add legend and tooltip options to Grafana library panels
Authored-by: Moko Consulting
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-05-15 20:52:27 -05:00

32 lines
705 B
JSON

{
"name": "Docker Container Memory",
"kind": 1,
"model": {
"description": "",
"fieldConfig": {
"defaults": {
"custom": {
"fillOpacity": 20,
"lineWidth": 2,
"stacking": {
"mode": "normal"
}
},
"unit": "bytes"
}
},
"targets": [
{
"expr": "container_memory_usage_bytes{name!=\"\",name!~\".*POD.*\"}",
"legendFormat": "{{name}}",
"refId": "A"
}
],
"options": {
"legend": { "displayMode": "list", "placement": "right", "calcs": [] },
"tooltip": { "mode": "multi" }
},
"title": "Memory Usage by Container",
"type": "timeseries"
}
}