1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
| { "dashboard": { "title": "Kubernetes Performance Dashboard", "panels": [ { "title": "API Server Request Rate", "type": "graph", "targets": [ { "expr": "sum(rate(apiserver_request_total[5m])) by (verb, code)", "legendFormat": "{{verb}} - {{code}}" } ] }, { "title": "API Server Request Duration", "type": "graph", "targets": [ { "expr": "histogram_quantile(0.95, sum(rate(apiserver_request_duration_seconds_bucket[5m])) by (le, verb))", "legendFormat": "95th percentile - {{verb}}" } ] }, { "title": "etcd Request Duration", "type": "graph", "targets": [ { "expr": "histogram_quantile(0.99, sum(rate(etcd_request_duration_seconds_bucket[5m])) by (le, operation))", "legendFormat": "99th percentile - {{operation}}" } ] } ] } }
|