Grafana Incident API
Interacting programmatically with Grafana Incident is the quickest way for engineering teams to customize the workflow and integrate with other tools.
Grafana Incident provides a variety of ways to integrate programmatically:
- The JSON/HTTPS RPC API for getting, creating and updating things
- Prefill the Declare Incident form with URL parameters
- Declare Incident bookmarklet
It is recommended that you use the API alongside Incoming and Outgoing webhooks.
Prefill the Declare Incident form with URL parameters
A simple way to help people declare an incident is to prefill the title, and other contextual information, during the declaration process.
You can do this using URL parameters on the https://your-stack.grafana.net/a/grafana-incident-app/incidents/declare page.
title
- (optional) string - Prefill the title of the incident (a human readable string)url
- (optional) url - Attach some context to the incident from the beginningcaption
- (optional) string - A description of the attached context (the label for the URL)
For example, try the following URL in your stack (Note: You should replace your-stack.grafana.net
):
https://your-stack.grafana.net/a/grafana-incident-app/incidents/declare?title=An+example+incident+using+url+params&url=https%3A%2F%2Fgrafana.com%2Fblog%2F2022%2F09%2F13%2Fgrafana-incident-for-incident-management-is-now-generally-available-in-grafana-cloud%2F&caption=Grafana+Incident+for+incident+management+is+now+generally+available+in+Grafana+Cloud
Declare Incident bookmarklet
You can add a Declare Incident button to your browser to allow you to declare incidents from any website.
The bookmarklet will carry the URL and title of the page into the Incident. For example, GitHub issues, JIRA tickets, SLO page, Grafana Dashboard, even a specific tweet, any URL.
To create a bookmarklet, consult the help docs of your specific browser. However, you will likely follow this process:
- Add or create a new bookmark (it is recommended that you place it on your Bookmarks Bar)
- For the title or caption, enter Declare Incident
- Use the code below for the URL field, providing the correct value for the
your-stack.grafana.net
placeholder
javascript: (() => {
let title = encodeURIComponent(document.title);
let url = encodeURIComponent(window.location.href);
window.open(
`https://your-stack.grafana.net/a/grafana-incident-app/incidents/declare?title=${title}&caption=${title}&url=${url}`,
);
})();
Get in touch
If you have any questions or feedback, please get in touch via our grafana/incident-community repo.