1
0
mirror of https://github.com/prometheus/alertmanager.git synced 2026-02-05 15:45:34 +01:00
Files
alertmanager/docs/notifications.md
Siavash Safi e9405f942c feat(template): add toJson function (#4773)
This change introduces a new template function called `toJson` which
can convert internal Alertmanager data structures into their JSON
representation.

This is useful in notify integrations where JSON objects can be
passed to external services.

Signed-off-by: Siavash Safi <siavash@cloudflare.com>
2025-12-03 11:00:20 -08:00

6.5 KiB

title, sort_rank
title sort_rank
Notification template reference 7

Prometheus creates and sends alerts to the Alertmanager which then sends notifications out to different receivers based on their labels. A receiver can be one of many integrations including: Slack, PagerDuty, email, or a custom integration via the generic webhook interface.

The notifications sent to receivers are constructed via templates. The Alertmanager comes with default templates but they can also be customized. To avoid confusion it's important to note that the Alertmanager templates differ from templating in Prometheus, however Prometheus templating also includes the templating in alert rule labels/annotations.

The Alertmanager's notification templates are based on the Go templating system. Note that some fields are evaluated as text, and others as HTML which will affect escaping.

Data Structures

Data

Data is the structure passed to notification templates and webhook pushes.

Name Type Notes
Receiver string Defines the receiver's name that the notification will be sent to (slack, email etc.).
Status string Defined as firing if at least one alert is firing, otherwise resolved.
Alerts Alert List of all alert objects in this group (see below).
GroupLabels KV The labels these alerts were grouped by.
CommonLabels KV The labels common to all of the alerts.
CommonAnnotations KV Set of common annotations to all of the alerts. Used for longer additional strings of information about the alert.
ExternalURL string Backlink to the Alertmanager that sent the notification.

The Alerts type exposes functions for filtering alerts:

  • Alerts.Firing returns a list of currently firing alert objects in this group
  • Alerts.Resolved returns a list of resolved alert objects in this group

Alert

Alert holds one alert for notification templates.

Name Type Notes
Status string Defines whether or not the alert is resolved or currently firing.
Labels KV A set of labels to be attached to the alert.
Annotations KV A set of annotations for the alert.
StartsAt time.Time The time the alert started firing. If omitted, the current time is assigned by the Alertmanager.
EndsAt time.Time Only set if the end time of an alert is known. Otherwise set to a configurable timeout period from the time since the last alert was received.
GeneratorURL string A backlink which identifies the causing entity of this alert.
Fingerprint string Fingerprint that can be used to identify the alert.

KV

KV is a set of key/value string pairs used to represent labels and annotations.

type KV map[string]string

Annotation example containing two annotations:

{
  summary: "alert summary",
  description: "alert description",
}

In addition to direct access of data (labels and annotations) stored as KV, there are also methods for sorting, removing, and viewing the LabelSets:

KV methods

Name Arguments Returns Notes
SortedPairs - Pairs (list of key/value string pairs.) Returns a sorted list of key/value pairs.
Remove []string KV Returns a copy of the key/value map without the given keys.
Names - []string Returns the names of the label names in the LabelSet.
Values - []string Returns a list of the values in the LabelSet.

Functions

Note the default functions also provided by Go templating.

Strings

Name Arguments Description
date string, time.Time Returns the text representation of the time in the specified format. For documentation on formats refer to pkg.go.dev/time.
humanizeDuration number or string Returns a human-readable string representing the duration, and the error if it happened.
join sep string, s []string strings.Join, concatenates the elements of s to create a single string. The separator string sep is placed between elements in the resulting string. (note: argument order inverted for easier pipelining in templates.)
match pattern, string Regexp.MatchString. Match a string using Regexp.
reReplaceAll pattern, replacement, text Regexp.ReplaceAllString Regexp substitution, unanchored.
safeHtml text string html/template.HTML, Marks string as HTML not requiring auto-escaping.
safeUrl text string html/template.URL, Marks string as URL not requiring auto-escaping.
since time.Time time.Since, returns the duration of how much time passed from the provided time till the current system time.
stringSlice ...string Returns the passed strings as a slice of strings.
title string strings.Title, capitalises first character of each word.
toJson any json.Marshal, returns the JSON encoding of the value.
toLower string strings.ToLower, converts all characters to lower case.
toUpper string strings.ToUpper, converts all characters to upper case.
trimSpace string strings.TrimSpace, removes leading and trailing white spaces.
tz string, time.Time Returns the time in the timezone. For example, Europe/Paris.
urlUnescape text string url.QueryUnescape, unescapes a URL with % encoding