| name | managing-grafana-oncall |
| description | Use when working with Grafana Oncall — grafana OnCall management covering
on-call schedule configuration, escalation chain design, integration setup
with monitoring tools, alert group management, notification routing, and shift
override management. Use when configuring Grafana OnCall schedules, building
escalation chains, connecting alerting integrations, or reviewing on-call
workload and alert distribution.
|
| connection_type | grafana-oncall |
| preload | false |
Grafana OnCall Management Skill
Manage Grafana OnCall schedules, escalation chains, integrations, and alert groups.
API Conventions
Authentication
All API calls use the Authorization: XXXXXX header — injected automatically. Never hardcode tokens.
Base URL
https://oncall-prod-us-central-0.grafana.net/oncall/api/v1
Core Helper Function
#!/bin/bash
goc_api() {
local method="$1"
local endpoint="$2"
local data="${3:-}"
if [ -n "$data" ]; then
curl -s -X "$method" \
-H "Authorization: $GRAFANA_ONCALL_API_KEY" \
-H "Content-Type: application/json" \
"${GRAFANA_ONCALL_URL}/api/v1${endpoint}" \
-d "$data"
else
curl -s -X "$method" \
-H "Authorization: $GRAFANA_ONCALL_API_KEY" \
"${GRAFANA_ONCALL_URL}/api/v1${endpoint}"
fi
}
Output Rules
- TOKEN EFFICIENCY: Extract only needed fields with
jq
- Target ≤50 lines per script output
On-Call Schedules
List Schedules
goc_api GET "/schedules/" | jq '[.results[] | {
id, name, type, team_id,
slack_channel: .slack.channel_name,
on_call_now: [.on_call_now[] | .username]
}]'
Get Schedule Details
goc_api GET "/schedules/SCHEDULE_ID/" | jq '{
name, type, team_id,
on_call_now: [.on_call_now[] | {username, pk}],
shifts: [.shifts[] | {id, name, type, start, duration, frequency}]
}'
Create a Web Schedule
goc_api POST "/schedules/" '{
"name": "Backend On-Call",
"type": "web",
"team_id": "TEAM_ID",
"time_zone": "America/New_York"
}'
Escalation Chains
List Escalation Chains
goc_api GET "/escalation_chains/" | jq '[.results[] | {id, name, team_id}]'
Get Escalation Chain Policies
goc_api GET "/escalation_policies/?escalation_chain_id=CHAIN_ID" | jq '[. | sort_by(.position) | .[] | {
position, type: .step,
notify_to_group: .notify_to_group,
duration: .duration,
important: .important
}]'
Create Escalation Chain
goc_api POST "/escalation_chains/" '{
"name": "Critical Service Chain",
"team_id": "TEAM_ID"
}'
Integrations
List Integrations
goc_api GET "/integrations/" | jq '[.results[] | {
id, name, type, team_id,
link, default_route: .default_route.escalation_chain_id
}]'
Create Integration
goc_api POST "/integrations/" '{
"name": "Prometheus Alerts",
"type": "grafana_alerting",
"team_id": "TEAM_ID"
}'
Alert Groups
List Alert Groups
goc_api GET "/alert_groups/?status=0" | jq '[.results[] | {
id, title, status, acknowledged_by,
created_at, resolved_at,
integration: .integration_id,
alerts_count
}]'
Acknowledge an Alert Group
goc_api POST "/alert_groups/ALERT_GROUP_ID/acknowledge/"
Shift Overrides
Create Override
goc_api POST "/on_call_shifts/" '{
"name": "Holiday Override",
"type": "override",
"schedule": "SCHEDULE_ID",
"start": "2024-12-25T00:00:00Z",
"duration": 86400,
"users": ["USER_ID"]
}'
Common Tasks
- Build escalation chains — create multi-step escalation with wait durations
- Configure schedules — set up rotation-based on-call with overrides
- Connect integrations — wire Grafana Alerting, Prometheus, or webhooks to OnCall
- Review alert groups — manage active, acknowledged, and silenced alert groups
- Audit on-call coverage — verify schedules have no gaps in coverage
Output Format
Present results as a structured report:
Managing Grafana Oncall Report
══════════════════════════════
Resources discovered: [count]
Resource Status Key Metric Issues
──────────────────────────────────────────────
[name] [ok/warn] [value] [findings]
Summary: [total] resources | [ok] healthy | [warn] warnings | [crit] critical
Action Items: [list of prioritized findings]
Target ≤50 lines of output. Use tables for multi-resource comparisons.
Anti-Hallucination Rules
- NEVER assume resource names — always discover via CLI/API in Phase 1 before referencing in Phase 2.
- NEVER fabricate metric names or dimensions — verify against the service documentation or
--help output.
- NEVER mix CLI commands between service versions — confirm which version/API you are targeting.
- ALWAYS use the discovery → verify → analyze chain — every resource referenced must have been discovered first.
- ALWAYS handle empty results gracefully — an empty response is valid data, not an error to retry.
Counter-Rationalizations
| Shortcut | Counter | Why |
|---|
| "I'll skip discovery and check known resources" | Always run Phase 1 discovery first | Resource names change, new resources appear — assumed names cause errors |
| "The user only asked for a quick check" | Follow the full discovery → analysis flow | Quick checks miss critical issues; structured analysis catches silent failures |
| "Default configuration is probably fine" | Audit configuration explicitly | Defaults often leave logging, security, and optimization features disabled |
| "Metrics aren't needed for this" | Always check relevant metrics when available | API/CLI responses show current state; metrics reveal trends and intermittent issues |
| "I don't have access to that" | Try the command and report the actual error | Assumed permission failures prevent useful investigation; actual errors are informative |