27 lines
586 B
JSON
27 lines
586 B
JSON
{
|
|
"title": "Load Test - Containers",
|
|
"panels": [
|
|
{
|
|
"title": "Container CPU",
|
|
"type": "graph",
|
|
"targets": [
|
|
{ "expr": "rate(container_cpu_usage_seconds_total{name=~\"topfans-.*\"}[1m]) * 100" }
|
|
]
|
|
},
|
|
{
|
|
"title": "Container Memory",
|
|
"type": "graph",
|
|
"targets": [
|
|
{ "expr": "container_memory_usage_bytes{name=~\"topfans-.*\"}" }
|
|
]
|
|
},
|
|
{
|
|
"title": "Container Restart Count",
|
|
"type": "graph",
|
|
"targets": [
|
|
{ "expr": "kube_pod_container_status_restarts_total" }
|
|
]
|
|
}
|
|
]
|
|
}
|