Important: This documentation is about an older version. It's relevant only to the release noted, many of the features and functions have been updated or replaced. Please view the current version.
Jinja2 templating
Grafana OnCall can integrate with any monitoring systems that can send alerts using webhooks with JSON payloads. By default, webhooks deliver raw JSON payloads. When Grafana OnCall receives an alert and parses its payload, a default pre-configured alert template is applied to modify the alert payload to be more human-readable. These alert templates are customizable for any integration.
Alert payload
Alerts received by Grafana OnCall contain metadata as keys and values in a JSON object. The following is an example of an alert received by Grafana OnCall initiated by Grafana Alerting:
{
"dashboardId": 1,
"title": "[Alerting] Panel Title alert",
"message": "Notification Message",
"evalMatches": [
{
"value": 1,
"metric": "Count",
"tags": {}
}
],
"imageUrl": "https://grafana.com/static/assets/img/blog/mixed_styles.png",
"orgId": 1,
"panelId": 2,
"ruleId": 1,
"ruleName": "Panel Title alert",
"ruleUrl": "http://localhost:3000/d/hZ7BuVbWz/test-dashboard?fullscreen\u0026edit\u0026tab=alert\u0026panelId=2\u0026orgId=1",
"state": "alerting",
"tags": {
"tag name": "tag value"
}
}
In Grafana OnCall every alert and alert group has the following fields:
Title
,message
andimage url
Grouping Id
Resolve Signal
The JSON payload is converted. For example:
{{ payload.title }}
-> Title{{ payload.message }}
-> Message{{ payload.imageUrl }}
-> Image Url
The result is that each field of the alert in OnCall is now mapped to the JSON payload keys. This also true for the alert behavior:
{{ payload.ruleId }}
-> Grouping Id{{ 1 if payload.state == 'OK' else 0 }}
-> Resolve Signal
Grafana OnCall provides a pre configured default Jinja template for supported integrations. If your monitoring system is
not in the Grafana OnCall integrations list, you can create a generic webhook
integration, send an alert, and configure
your templates.
Customize alerts with alert templates
Alert templates allow you to format any alert fields recognized by Grafana OnCall. You can customize default alert templates for all the different ways you receive your alerts such as web, slack, SMS, and email. For more advanced customization, use Jinja templates.
As a best practice, add Playbooks, Useful links, or Checklists to the alert message.
To customize alert templates in Grafana OnCall:
Navigate to the Integrations tab, select the integration, then click Change alert template and grouping.
In Alert Templates, select a template from the Edit template for dropdown.
Edit the Appearances template as needed:
Title
,Message
,Image url
for WebTitle
,Message
,Image url
for SlackTitle
used for SMSTitle
used for PhoneTitle
,Message
used for Email
Edit the alert behavior as needed:
Grouping Id
- Alerts with the sameGrouping Id
will be grouped into the same Alert Group if Alert Group in the state “Firing”, “Acked” or “Silenced” exists. If previous Alert Group is in the state “Resolved”, a new Alert Group will be issued.Acknowledge Condition
- The output should beok
,true
, or1
to auto-acknowledge the alert group. For example,{{ 1 if payload.state == 'OK' else 0 }}
.Resolve Condition
- The output should beok
,true
or1
to auto-resolve the alert group. For example,{{ 1 if payload.state == 'OK' else 0 }}
.Source Link
- Used to customize the URL link to provide as the “source” of the alert.
Advanced Jinja templates
Grafana OnCall uses Jinja templating language to format alert groups for the Web, Slack, phone calls, SMS messages, and more because the JSON format is not easily readable by humans. As a result, you can decide what you want to see when an alert group is triggered as well as how it should be presented.
Jinja2 offers simple but multi-faceted functionality by using loops, conditions, functions, and more.
NOTE: Every alert from a monitoring system comes in the key/value format.
Grafana OnCall has rules about which of the keys match to: __title
, message
, image
, grouping
, and auto-resolve__
.
Loops
Monitoring systems can send an array of values. In this example, you can use Jinja to iterate and format the alert using a Grafana example:
*Values:*
{% for evalMatch in payload.evalMatches -%}
`{{ evalMatch['metric'] }}: '{{ evalMatch['value'] -}}'`{{ " " }}
{%- endfor %}
Conditions
You can add instructions if an alert comes from a specified Grafana alert rule:
{% if payload.ruleId == '1' -%}
*Alert TODOs*
1. Get acess to the container
```
kubectl port-forward service/example 3000:80
```
2. Check for the exception.
3. Open the container and reload caches.
4. Click Custom Button `Send to Jira`
{%- endif -%}
Built-in Jinja functions
Jinja2 includes built-in functions that can also be used in Grafana OnCall. For example:
{{ payload | tojson_pretty }}
Built-in functions:
abs
capitalize
trim
- You can see the full list of Jinja built-in functions on github here
Functions added by Grafana OnCall
time
- current timetojson_pretty
- JSON prettifiediso8601_to_time
- converts time from iso8601 (2015-02-17T18:30:20.000Z
) to datetimedatetimeformat
- converts time from datetime to the given format (%H:%M / %d-%m-%Y
by default)regex_replace
- performs a regex find and replaceregex_match
- performs a regex match, returnsTrue
orFalse
. Usage example:{{ payload.ruleName | regex_match(".*") }}