Install any skill in seconds. Free to start, no credit card required.
Get Started Free →Create and manage production-ready Grafana dashboards for comprehensive system observability.
.claude/skills/sickn33-grafana-dashboards/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-10 | ✗→✓ | ▲ Improved | 108% | 0% |
| case-01 | ✓→✓ | = Same ✓ | 51% | 0% |
| case-03 | ✓→✓ | = Same ✓ | 94% | 0% |
| case-04 | ✓→✓ | = Same ✓ | 148% | 0% |
| case-05 | ✓→✓ | = Same ✓ | 73% | 0% |
Create and manage production-ready Grafana dashboards for comprehensive system observability.
resources/implementation-playbook.md.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 | pass→pass | 29,110 | 47,116 | +62% | 1 | 1 | 0% | 7,110 | 10,764 | +51% | 0 | 0 | — |
case-02 | fail→fail | 14,915 | 13,023 | -13% | 1 | 1 | 0% | 2,913 | 5,377 | +85% | 0 | 0 | — |
case-03 | pass→pass | 11,659 | 10,063 | -14% | 1 | 1 | 0% | 2,249 | 4,373 | +94% | 0 | 0 | — |
case-04 | pass→pass | 9,383 | 10,534 | +12% | 1 | 1 | 0% | 1,806 | 4,482 | +148% | 0 | 0 | — |
case-05 | pass→pass | 13,740 | 10,489 | -24% | 1 | 1 | 0% | 2,682 | 4,641 | +73% | 0 | 0 | — |
case-06 | pass→pass | 14,962 | 15,889 | +6% | 1 | 1 | 0% | 2,725 | 5,475 | +101% | 0 | 0 | — |
case-07 | pass→pass | 25,147 | 12,128 | -52% | 1 | 1 | 0% | 2,203 | 4,728 | +115% | 0 | 0 | — |
case-08 | fail→fail | 8,946 | 7,248 | -19% | 1 | 1 | 0% | 1,800 | 3,931 | +118% | 0 | 0 | — |
case-09 | pass→pass | 14,224 | 11,590 | -19% | 1 | 1 | 0% | 2,725 | 4,894 | +80% | 0 | 0 | — |
case-10 | fail→pass | 14,123 | 14,793 | +5% | 1 | 1 | 0% | 2,478 | 5,145 | +108% | 0 | 0 | — |
case-11 | fail→fail | 12,236 | 9,990 | -18% | 1 | 1 | 0% | 2,220 | 4,358 | +96% | 0 | 0 | — |
case-12 | fail→fail | 15,067 | 11,740 | -22% | 1 | 1 | 0% | 2,440 | 4,763 | +95% | 0 | 0 | — |
case-13 | fail→fail | 9,086 | 11,089 | +22% | 1 | 1 | 0% | 1,678 | 4,518 | +169% | 0 | 0 | — |
case-14 | pass→pass | 13,201 | 8,940 | -32% | 1 | 1 | 0% | 2,630 | 4,273 | +62% | 0 | 0 | — |
case-15 | fail→fail | 9,270 | 6,869 | -26% | 1 | 1 | 0% | 1,754 | 3,733 | +113% | 0 | 0 | — |
case-16 | pass→pass | 16,045 | 19,198 | +20% | 1 | 1 | 0% | 2,565 | 5,639 | +120% | 0 | 0 | — |
case-17 | pass→pass | 21,377 | 18,359 | -14% | 1 | 1 | 0% | 3,642 | 6,157 | +69% | 0 | 0 | — |
case-18 | pass→pass | 17,258 | 17,081 | -1% | 1 | 1 | 0% | 2,765 | 5,108 | +85% | 0 | 0 | — |
case-19 | pass→pass | 9,592 | 7,586 | -21% | 1 | 1 | 0% | 1,906 | 3,960 | +108% | 0 | 0 | — |
case-20 | pass→pass | 4,150 | 4,257 | +3% | 1 | 1 | 0% | 638 | 3,207 | +403% | 0 | 0 | — |
case-21 | pass→pass | 10,641 | 11,682 | +10% | 1 | 1 | 0% | 1,831 | 4,150 | +127% | 0 | 0 | — |
case-22 | pass→pass | 17,428 | 10,807 | -38% | 1 | 1 | 0% | 2,682 | 4,146 | +55% | 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. 22 cases were attempted. The headline lift of +5 percentage points is the difference between those two pass rates over the 22 comparable cases.
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.