Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create and manage production Grafana dashboards for real-time visualization of system and application metrics. Use when building monitoring dashboards, visualizing metrics, or creating operational observability interfaces.
.claude/skills/dicklesworthstone-grafana-dashboards/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-03 | ✗→✓ | ▲ Improved | 139% | 0% |
| case-07 | ✗→✓ | ▲ Improved | 77% | 0% |
| case-09 | ✗→✓ | ▲ Improved | 88% | 0% |
| case-17 | ✗→✓ | ▲ Improved | 82% | 0% |
| case-19 | ✗→✓ | ▲ Improved | 63% | 0% |
Create and manage production-ready Grafana dashboards for comprehensive system observability.
Design effective Grafana dashboards for monitoring applications, infrastructure, and business metrics.
┌─────────────────────────────────────┐
│ Critical Metrics (Big Numbers) │
├─────────────────────────────────────┤
│ Key Trends (Time Series) │
├─────────────────────────────────────┤
│ Detailed Metrics (Tables/Heatmaps) │
└─────────────────────────────────────┘json{ "dashboard": { "title": "API Monitoring", "tags": ["api", "production"], "timezone": "browser", "refresh": "30s", "panels": [ { "title": "Request Rate", "type": "graph", "targets": [ { "expr": "sum(rate(http_requests_total[5m])) by (service)", "legendFormat": "{{service}}" } ], "gridPos": { "x": 0, "y": 0, "w": 12, "h": 8 } }, { "title": "Error Rate %", "type": "graph", "targets": [ { "expr": "(sum(rate(http_requests_total{status=~\"5..\"}[5m])) / sum(rate(http_requests_total[5m]))) * 100", "legendFormat": "Error Rate" } ], "alert": { "conditions": [ { "evaluator": { "params": [5], "type": "gt" }, "operator": { "type": "and" }, "query": { "params": ["A", "5m", "now"] }, "type": "query" } ] }, "gridPos": { "x": 12, "y": 0, "w": 12, "h": 8 } }, { "title": "P95 Latency", "type": "graph", "targets": [ { "expr": "histogram_quantile(0.95, sum(rate(http_request_duration_seconds_bucket[5m])) by (le, service))", "legendFormat": "{{service}}" } ], "gridPos": { "x": 0, "y": 8, "w": 24, "h": 8 } } ] } }
Reference: See assets/api-dashboard.json
json{ "type": "stat", "title": "Total Requests", "targets": [ { "expr": "sum(http_requests_total)" } ], "options": { "reduceOptions": { "values": false, "calcs": ["lastNotNull"] }, "orientation": "auto", "textMode": "auto", "colorMode": "value" }, "fieldConfig": { "defaults": { "thresholds": { "mode": "absolute", "steps": [ { "value": 0, "color": "green" }, { "value": 80, "color": "yellow" }, { "value": 90, "color": "red" } ] } } } }
json{ "type": "graph", "title": "CPU Usage", "targets": [ { "expr": "100 - (avg by (instance) (rate(node_cpu_seconds_total{mode=\"idle\"}[5m])) * 100)" } ], "yaxes": [ { "format": "percent", "max": 100, "min": 0 }, { "format": "short" } ] }
json{ "type": "table", "title": "Service Status", "targets": [ { "expr": "up", "format": "table", "instant": true } ], "transformations": [ { "id": "organize", "options": { "excludeByName": { "Time": true }, "indexByName": {}, "renameByName": { "instance": "Instance", "job": "Service", "Value": "Status" } } } ] }
json{ "type": "heatmap", "title": "Latency Heatmap", "targets": [ { "expr": "sum(rate(http_request_duration_seconds_bucket[5m])) by (le)", "format": "heatmap" } ], "dataFormat": "tsbuckets", "yAxis": { "format": "s" } }
json{ "templating": { "list": [ { "name": "namespace", "type": "query", "datasource": "Prometheus", "query": "label_values(kube_pod_info, namespace)", "refresh": 1, "multi": false }, { "name": "service", "type": "query", "datasource": "Prometheus", "query": "label_values(kube_service_info{namespace=\"$namespace\"}, service)", "refresh": 1, "multi": true } ] } }
sum(rate(http_requests_total{namespace="$namespace", service=~"$service"}[5m]))json{ "alert": { "name": "High Error Rate", "conditions": [ { "evaluator": { "params": [5], "type": "gt" }, "operator": { "type": "and" }, "query": { "params": ["A", "5m", "now"] }, "reducer": { "type": "avg" }, "type": "query" } ], "executionErrorState": "alerting", "for": "5m", "frequency": "1m", "message": "Error rate is above 5%", "noDataState": "no_data", "notifications": [{ "uid": "slack-channel" }] } }
dashboards.yml:
yamlapiVersion: 1 providers: - name: "default" orgId: 1 folder: "General" type: file disableDeletion: false updateIntervalSeconds: 10 allowUiUpdates: true options: path: /etc/grafana/dashboards
Key Panels:
Reference: See assets/infrastructure-dashboard.json
Key Panels:
Reference: See assets/database-dashboard.json
Key Panels:
hclresource "grafana_dashboard" "api_monitoring" { config_json = file("${path.module}/dashboards/api-monitoring.json") folder = grafana_folder.monitoring.id } resource "grafana_folder" "monitoring" { title = "Production Monitoring" }
yaml- name: Deploy Grafana dashboards copy: src: "{{ item }}" dest: /etc/grafana/dashboards/ with_fileglob: - "dashboards/*.json" notify: restart grafana
assets/api-dashboard.json - API monitoring dashboardassets/infrastructure-dashboard.json - Infrastructure dashboardassets/database-dashboard.json - Database monitoring dashboardreferences/dashboard-design.md - Dashboard design guideprometheus-configuration - For metric collectionslo-implementation - For SLO dashboards| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-01 | fail→fail | 10,698 | 13,473 | +26% | 1 | 1 | 0% | 2,072 | 4,466 | +116% | 0 | 0 | — |
case-02 | pass→pass | 10,949 | 10,202 | -7% | 1 | 1 | 0% | 1,879 | 4,380 | +133% | 0 | 0 | — |
case-03 | fail→pass | 8,848 | 6,409 | -28% | 1 | 1 | 0% | 1,493 | 3,573 | +139% | 0 | 0 | — |
case-04 | fail→fail | 11,559 | 8,413 | -27% | 1 | 1 | 0% | 2,234 | 4,074 | +82% | 0 | 0 | — |
case-05 | pass→fail | 12,513 | 10,751 | -14% | 1 | 1 | 0% | 2,462 | 4,227 | +72% | 0 | 0 | — |
case-06 | fail→fail | 12,822 | 11,719 | -9% | 1 | 1 | 0% | 2,289 | 4,632 | +102% | 0 | 0 | — |
case-07 | fail→pass | 11,929 | 8,616 | -28% | 1 | 1 | 0% | 2,222 | 3,924 | +77% | 0 | 0 | — |
case-08 | fail→fail | 8,611 | 7,434 | -14% | 1 | 1 | 0% | 1,296 | 3,659 | +182% | 0 | 0 | — |
case-09 | fail→pass | 12,757 | 12,223 | -4% | 1 | 1 | 0% | 2,486 | 4,680 | +88% | 0 | 0 | — |
case-18 | pass→pass | 8,982 | 5,869 | -35% | 1 | 1 | 0% | 1,692 | 3,546 | +110% | 0 | 0 | — |
case-10 | fail→fail | 10,040 | 8,196 | -18% | 1 | 1 | 0% | 1,784 | 3,859 | +116% | 0 | 0 | — |
case-11 | pass→pass | 8,132 | 5,133 | -37% | 1 | 1 | 0% | 1,615 | 3,424 | +112% | 0 | 0 | — |
case-12 | pass→pass | 17,306 | 17,834 | +3% | 1 | 1 | 0% | 2,513 | 5,567 | +122% | 0 | 0 | — |
case-13 | fail→fail | 18,764 | 16,972 | -10% | 1 | 1 | 0% | 2,932 | 5,822 | +99% | 0 | 0 | — |
case-14 | pass→pass | 16,833 | 12,976 | -23% | 1 | 1 | 0% | 2,830 | 4,301 | +52% | 0 | 0 | — |
case-15 | pass→pass | 14,599 | 12,625 | -14% | 1 | 1 | 0% | 2,316 | 4,177 | +80% | 0 | 0 | — |
case-16 | pass→pass | 9,589 | 8,305 | -13% | 1 | 1 | 0% | 1,719 | 3,649 | +112% | 0 | 0 | — |
case-17 | fail→pass | 10,343 | 6,435 | -38% | 1 | 1 | 0% | 1,851 | 3,368 | +82% | 0 | 0 | — |
case-19 | fail→pass | 12,045 | 6,526 | -46% | 1 | 1 | 0% | 2,240 | 3,643 | +63% | 0 | 0 | — |
case-20 | fail→pass | 8,641 | 2,370 | -73% | 1 | 1 | 0% | 1,550 | 2,679 | +73% | 0 | 0 | — |
case-21 | pass→pass | 8,436 | 9,425 | +12% | 1 | 1 | 0% | 1,789 | 4,419 | +147% | 0 | 0 | — |
case-22 | pass→pass | 7,745 | 8,592 | +11% | 1 | 1 | 0% | 1,488 | 3,666 | +146% | 0 | 0 | — |
case-23 | pass→pass | 10,013 | 8,805 | -12% | 1 | 1 | 0% | 1,410 | 3,718 | +164% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 23 cases were attempted. The headline lift of +22 percentage points is the difference between those two pass rates over the 23 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.