-
Notifications
You must be signed in to change notification settings - Fork 80
Charts
cuigh edited this page Dec 16, 2021
·
1 revision
{
"title": "Container count",
"desc": "Container count",
"dashboard": "home",
"type": "gauge",
"unit": "",
"width": 4,
"height": 200,
"margin": {},
"metrics": [
{
"legend": "",
"query": "count(container_last_seen{image!=\"\"})"
}
]
}
{
"title": "Node load in 1 minute",
"desc": "Node load in 1 minute",
"dashboard": "home",
"type": "line",
"unit": "percent:1",
"width": 12,
"height": 200,
"margin": {
"left": 42
},
"metrics": [
{
"legend": "${host_ip}",
"query": "node_load1"
}
],
}
{
"title": "Available memory of nodes",
"desc": "Available memory of nodes",
"dashboard": "home",
"type": "pie",
"unit": "size:bytes",
"width": 4,
"height": 200,
"margin": {},
"metrics": [
{
"legend": "${host_ip}",
"query": "node_memory_MemAvailable_bytes"
}
]
}