For the complete documentation index, see llms.txt. This page is also available as Markdown.

Alerts API

Contents

Creating Alerts

POST /v2/alerts/

Path Parameters

Name
Type
Description

name*

String

A name that uniquely identifies this alert.

metric*

String

The graphite metric query to alert on.

alert_criteria*

String

The criteria for which the alert triggers.

additional_criteria

String

Any extra metrics that are to be included when evaluating the state of an alert, these are referred to as Composite Alerts. Note that any additional criteria must be referenced in the expression field and a maximum of 3 additional criteria is allowed. Example: {"f": {"type": "above", "above_value": 5, "metric": "additional.metric.to.alert.on"} where f is also referenced in the expression field. Defaults to {}.

expression

String

A conditional relationship between multiple metrics. It allows for the combining of multiple alert criteria. It’s represented in the format of a boolean expression where each individual alert criteria is denoted as a single letter. The letter a is reserved for the criteria defined in alert_criteria. Only required when additional alerting criteria are defined. Maximum number of 3 additional criteria allowed (4 including the default alert criteria). && takes higher precedence over || Examples: a && b, a || c. Defaults to a.

above_vale

String

The value above which the alert should trigger. Required for alert type above and outside_bounds.

below_value

String

The value below which the alert should trigger. Required for alert type below and outside_bounds.

time_period

String

The time period in minutes for which the threshold needs to be breached. Leave empty for an instantaneous evaluation. Required for alert type missing.

scheduled_mutes

String

List of scheduled mutes for this alert. Must be a list of scheduled mute IDs. Defaults to an empty list.

notification_channels

String

List of notification channels for this alert. This can be a combination of channel names and channel IDs. Defaults to Email me if none exists.

notification_type

String

The type of notification interval for this alert. Options are state_change (['state_change'] or 'state_change' is valid) or ['every', time_in_minutes]. This lets you control how often you want to be notified for an alert. Defaults to ['every', 60] if empty.

info

String

Alert message sent with notifications. Can contain an arbitrary string which may contain a description of the alert, steps to follow or references to documentation.

on_query_failure

String

Controls if a notification is delivered if the graphite function query fails. Only valid for Alerts that have graphite function in the metric field. Defaults to notify. Graphite function query can fail due to timeouts from matching too many metrics, being malformed or if it returns duplicate metrics due to aliasing.

Bad Request Invalid format

Conflict Alert with the name already exists.

Curl example:

Creates an alert named alert1 for metric test.metric.1 that triggers if the value is above 5 for 2 minutes with the (default) Email me notification type.

Request format:

Alert criteria examples:

Create an alert that triggers if the metric is missing for 10 minutes.

Create an alert that triggers if the metric is above 5.6 ever.

Create an alert that triggers if the metric is below 2.1 or above 5.6 ever.

Create an alert that triggers if the metric is below 2.1 or above 5.6 for 10 minutes.


Composite Alerts

Composite alerts can evaluate multiple metrics/values, and are defined in the additional_criteria and expression parameters in the request format.

Create an alert when one metric is above 80 and another is below 20.

Create an alert when one metric is below 50 or another is below 30.

Create an alert when one metric (A) is below 50 and another (B) is above 60 or if a third (C) is above 120. Note that performing an && on two monitors gets preference over || so this alert expression will be evaluated as (A && B) || C

NOTE: Composite alerts are fully supported in our Graphite Alerts UI and can be created, updated, and managed directly from the alert configuration interface.

Alert notifications include additional composite context such as logical expressions, condition evaluation details, and triggered metrics. For wildcard-based conditions, notifications will also include a list of Triggered Metrics that contributed to the alert state.

The alert overview page currently displays the last evaluated metric associated with the alert notification graph.


Searching Alerts

GET /v2/alerts/

Returns a JSON object containing information on alerts matching the search query. Returns all the alerts if the parameter is left empty: /v2/alerts/?

Path Parameters

Name
Type
Description

name

String

Format: &name=<alert_name1>&name=<alert_name2>The alert name to search for. Can specify multiple alert names to search for more than 1. Performs an OR operation so a query such as &name=<alert_name1>&name=<alert_name2> will return info on both alert_name1 and alert_name2

id

String

Format: &id=<id1>&id=<alert_id2>The alert id to search for. Can specify multiple ids to search for more than 1. Performs an OR operation so a query such as &id=<alert_id1>&id=<alert_id2> will return info on both alert_id1 and alert_id2.

search

String

Format: &search=<search_string>A more generic search that will match any alert whose alert name, metric name or notification channel name contains the search string.

page

String

Format: &page=1The page number to query. Used if there are more alerts than can be displayed in a single request. (default: 1)

max

String

Format: &max=50The maximum number of alerts to display. Limit of 100. (default: 100)

Bad Request Invalid form data

Curl example:

Returns a list of all alerts

Returns a list of alerts that match the search pattern "example".

Specifying both alert_name and alert_id performs an OR operation and returns alert that match either criteria. Including a search string performs an AND operation with the other criteria.


Obtain Information on a Single Alert

GET /v2/alerts/<alert_id>/

Returns information on a single alert

Not Found Alert doesn’t exist

Curl example:

Obtain information on the alert identified by the id 123-456-7890. The alert id can be found in the URL of the alert when viewed from within the Hosted Graphite Alerts UI. NOTE: a request must contain the forward slash character after the alert_id.


Updating Alerts

PUT /v2/alerts/<alert_id>/

Update attributes of an alert identified by the alert id

Bad Request Invalid form data

Not Found Alert doesn’t exist.

Curl Example

Modify the alert identified by the id 123-456-789 to alert if the metric values are below 6 for 3 minutes. Each field is optional, only the specified fields are updated, and requests must contain the forward slash character after the alert_id.


Deleting Alerts

DELETE /v2/alerts/<alert_id>/

Delete an alert identified by the alert id.

OK

Bad Request Alert doesn't exist

Curl Example

Delete the alert identified by the id 123-456-789.


Mute an Alert

POST /v2/alerts/<alert_id>/muted/

Mute alerts identified by the alert id.

Path Parameters

Name
Type
Description

duration*

String

Time to mute in minutes.

Bad Request Invalid form data

Not Found Alert doesn't exist

Curl Example:

Mute the alert identified by the id 123-456-789 for 60 minutes.


Unmute an Alert

DELETE /v2/alerts/<alert_id>/muted/

Unmute an alert identified by the alert id.

OK

Not Found Alert doesn't exist

Curl Example:

Unmute the alert identified by the id 123-456-789`.


Check if an Alert is Muted

GET /v2/alerts/<alert_id>/muted/

Get the mute status of an alert identified by the alert id.

Not Found Alert doesn't exist

Curl Example:

Obtain information on the mute status of the alert identified by the id 123-456-789. Also provides a list of the scheduled mutes currently attached to the alert.


Mute Multiple Alerts

POST /v2/alerts/muted/

Path Parameters

Name
Type
Description

ids

String

List of alert ids to mute.

search

String

String to filter alerts. Every alert with an alert name, metric name, or notification channel name containing this string will be muted.

duration*

String

Time to mute in minutes.

Bad Request Invalid request

Not Found Alert doesn't exist

Curl examples:

Mute alerts 123-456-789 and 321-654-987 for 60 minutes.

Mute alerts with alert name, metric name or notification channel name containing search_string for 60 minutes. If both ids and search are empty, then all alerts will be muted.


Unmute Multiple Alerts

DELETE /v2/alerts/muted/

Path Parameters

Name
Type
Description

ids

String

List of alert ids to unmute.

search

String

String to filter alerts. Every alert with an alert name, metric name, or notification channel name containing this string will be unmuted.

Bad Request Invalid request

Not Found Alert doesn't exist

Curl examples:

Unmute alerts 123-456-789 and 321-654-987.

Unmute alerts with alert name, metric name or notification channel name containing search_string. If both ids and search are empty, then all alerts will be unmuted.


Obtain Alert History

GET /v2/alerts/history/?

Path Parameters

Name
Type
Description

id

String

The alert id to search for. Can specify multiple ids to search for more than 1. Returns history of all alerts if emptyFormat: &alert_id=<alert_id1>&alert_id=<alert_id2>

days

String

The number of days to obtain history of.Format: &days=1 (default: 3)

status

String

The status that was recorded. Cant be either ‘alerting’ or ‘recovered’.

value

String

The value at which the alert triggered or recovered. Value will be null if the alert was a missing metric alert.

time

String

Unix timestamp at which the alert triggered or recovered.

Bad Request Invalid query parameters

Curl example:

Obtain alert history of the alert identified by the id 123-456-789.

Last updated