Overview
The Kind property determines the classification and structural behavior of an incident at the time it is created. It governs workflow triggers, lifecycle expectations, status page eligibility, and whether the incident contributes to production metrics. Kind is a fixed property — it’s immutable after declaration. Choosing the right kind at creation matters because there’s no way to convert a Test Incident into a Normal Incident, or a Scheduled Maintenance into a standard incident, after the fact.Available Kinds
Behavior Differences at a Glance
Each Kind selects a different mix of behavior — knowing the mix up front prevents the most common mistakes (declaring a test incident that pages on-call, declaring a normal incident for a maintenance window).Choosing the Right Kind
- Use
normal(Incident) for the vast majority of real production issues — anything you’d want metrics, retrospectives, and on-call paging for. - Use
testwhen validating workflows, training a new team member, or running a tabletop. Test incidents fire workflows so you can verify automation end-to-end, but they don’t contaminate metrics or page customers via status pages. - Use
backfilledwhen documenting an incident that already happened and was resolved outside of Rootly. The incident lands inresolvedstatus; workflows that key off Incident Created still run, but Started/Mitigated transitions are skipped because they’re already in the past. - Use
scheduledfor planned maintenance windows you want to communicate via status pages. Scheduled Maintenance follows a different lifecycle (Scheduled → In Progress → Completed) — don’t try to fit a maintenance window into the normal Started/Mitigated/Resolved flow. - Use
normal_sub,test_sub, orscheduled_subwhen tracking a parallel workstream under an existing parent incident. Sub-incidents inherit the parent’s context and are tracked together.
Best Practices
- Pick the kind carefully on creation — it’s immutable. If you accidentally declare a real production incident as a Test Incident, you’ll need to cancel it and re-declare as
normal. The metrics and status page implications of getting this wrong are non-trivial. - Default to
/rootly newfor ambiguous situations. A real incident accidentally tagged Test is invisible in metrics. A test accidentally tagged Normal is recoverable by cancelling. Err toward the recoverable failure mode. - Lock down
/rootly maintenanceto operators who actually run maintenance. Status-page-publishing Scheduled Maintenance incidents are customer-facing — limit who can publish. - Use Sub Incidents for workstream tracking, not categorization. If you find yourself creating sub-incidents to label severity or component, you want Incident Types or Custom Fields instead.
Troubleshooting
I declared a test incident but it paged my on-call
I declared a test incident but it paged my on-call
Kind is one of: Incident, Sub Incident (which corresponds to normal, normal_sub). If you only want to page for top-level incidents, use Kind is: Incident (which corresponds to normal) — this excludes sub-incidents, which are often used for parallel workstreams under a parent that already paged.A real incident I declared isn't showing up in metrics
A real incident I declared isn't showing up in metrics
test, test_sub) and Scheduled Maintenance (scheduled, scheduled_sub) kinds are excluded from production metrics by design. If the incident was accidentally created as a Test, cancel it and re-declare with /rootly new.I need to change the Kind of an existing incident
I need to change the Kind of an existing incident
My backfilled incident's Started workflow didn't run
My backfilled incident's Started workflow didn't run
resolved state, so the Started lifecycle stage is skipped. Only workflows triggered on Incident Created run for backfilled incidents. If you need a workflow to run for backfills, key it off Incident Created and add a Kind is backfilled condition.Frequently Asked Questions
Can I change an incident's Kind after it's created?
Can I change an incident's Kind after it's created?
What's the difference between Kind and Type?
What's the difference between Kind and Type?
normal, test, scheduled). It cannot be customized and determines workflow execution, lifecycle, and status page eligibility.Type (Incident Types) is a configurable property that allows organizations to define their own categorization taxonomy (e.g., “UI Bug”, “Infrastructure Failure”, “Security Event”). Types are fully customizable and can be used for filtering, reporting, and workflow conditions, but they don’t affect the fundamental behavior of the incident.Think of Kind as “what kind of incident is this structurally?” and Type as “what category does this incident fall into for our organization?”Do test incidents trigger workflows?
Do test incidents trigger workflows?
- Validating workflow configurations
- Training team members on incident response
- Testing integrations without production impact
Why are backfill incidents automatically resolved?
Why are backfill incidents automatically resolved?
Can scheduled maintenance incidents use standard incident statuses?
Can scheduled maintenance incidents use standard incident statuses?