Name | Required? | Description | Liquid Variable |
---|---|---|---|
In Triage | No | Before an incident starts, it can go through a triage state. This timestamp is automatically logged when the incident enters the in_triage state. | {{ incident.in_triage_at }} |
Started | Yes | This marks the official start of an incident. This timestamp is automatically logged when the incident enters the started state. | {{ incident.started_at }} |
Detected | No | This marks the time when the response team is informed. For many teams, the time in which the incident starts is also the time in which their responder team is informed. There is no “detected” state, so this timestamp is NOT automatically logged out of box. Teams can manually set it OR automatically set it through workflows. | {{ incident.detected_at }} |
Acknowledged | No | This marks the time when the response team acknowledges that they are looking into the incident. For many teams, this timestamp is often tied to when the first responder acknowledges the page through an on-call solution (e.g. Rootly On-Call, PagerDuty, Opsgenie, etc.). There is no “acknowledged” state, so this timestamp is NOT automatically logged out of box. Teams can manually set it OR automatically set it through workflows. | {{ incident.acknowledged_at }} |
Mitigated | Yes | This marks the time in which the impact of the incident is halted. This does NOT signify the end of an incident. This timestamp is automatically logged when the incident enters the mitigated state. | {{ incident.mitigated_at }} |
Resolved | Yes | This marks the time in which the incident is resolved and all systems are running as normal. This timestamp is automatically logged when the incident enters the resolved state. | {{ incident.resolved_at }} |
Cancelled | No | This marks the time in which the incident is cancelled. This timestamp is automatically logged when the incident enters the cancelled state. | {{ incident.cancelled_at }} |
Value | Format | Formula |
---|---|---|
Time to Mitigation {{ incident.time_to_mitigation }} | Integer in hours | {{ incident.mitigated_at }} - {{ incident.started_at }} |
Mitigation Duration {{ incident.mitigation_duration }} | Integer in seconds | {{ incident.mitigated_at }} - {{ incident.started_at }} |
Time to Detection {{ incident.time_to_detection }} | Integer in hours | {{ incident.detected_at }} - {{ incident.started_at }} |
Detection Duration {{ incident.detection_duration }} | Integer in seconds | {{ incident.detected_at }} - {{ incident.started_at }} |
Time to Acknowledge {{ incident.time_to_acknowledge }} | Integer in hours | {{ incident.acknowledged_at }} - {{ incident.started_at }} |
Acknowledge Duration {{ incident.acknowledge_duration }} | Integer in seconds | {{ incident.acknowledged_at }} - {{ incident.started_at }} |
Time to Resolution {{ incident.time_to_resolution }} | Integer in hours | {{ incident.resolved_at }} - {{ incident.started_at }} |
Incident Duration {{ incident.duration }} | Integer in seconds | If resolved, {{ incident.resolved_at }} - {{ incident.started_at }} If not resolved, now - {{ incident.started_at }} |