Archiving Incidents
FireHydrant allows you to archive incidents so they’re hidden from the UI and not counted in your analytics. You may want to archive incidents because:
- You’ve been testing the FireHydrant platform, and you may want to clear all incidents for a “fresh start” in your account
- You accidentally created an incident, and you want to remove it so it’s not counted in your analytics
When you archive an incident, it is hidden from the FireHydrant UI and also from the Analytics data and API.
Note:
Archiving an incident will immediately halt any attached Runbooks and executing Runbook steps, as well as exclude the incident data from any Analytics and Metrics calculations. It will also hide the incident by default on the Incidents page.
Archiving incidents
From the Command Center
- Navigate to the incident you wish to archive.
- Click the Ellipses next to the "Resolve incident" button.
- Select Archive incident.
With the API
You can archive incidents using our Archive an Incident API endpoint. Here is an example API call using cURL
:
curl --request DELETE \
--url https://api.firehydrant.io/v1/incidents/${YOUR_INCIDENT_ID} \
--header 'Authorization: ${YOUR_AUTH_TOKEN}' \
--header 'Content-Type: application/json'
Unarchiving Incidents
f you decide that you want to retrieve any previously-archived incidents, there are two ways you can do so.
Via UI
- In the web UI, go to the Incidents page at the top navigation
- Adjust the filters so you see only Archived incidents.
- Next to the incident(s) you want to unarchive, click the crossed-out trashbin.
Via API
You can use the Unarchive Incident API endpoint. Here is an example API call usingcURL
:
curl --request POST \
--url https://api.firehydrant.io/v1/incidents/${YOUR_INCIDENT_ID}/unarchive \
--header 'Authorization: ${YOUR_AUTH_TOKEN}' \
--header 'Content-Type: application/json'
Other Recipes and Scripts
Visit the Recipes section of the documentation website for various example recipes. For example:
Next Steps
- Continue exploring FireHydrant's capabilities via Reopening Incidents, creating historical, resolved incidents, or Scheduled Maintenances
- Look at Conducting Retrospectives and see how FireHydrant keeps your responders focused when reviewing incidents
- Check out Integrations Overview for a comprehensive list of all of FireHydrant's integrations
Updated 12 months ago