docs/sources/shared/alerts/alerting_provisioning.md
The Alerting Provisioning HTTP API can be used to create, modify, and delete resources relevant to Grafana-managed alerts. This API is the one used by our Grafana Terraform provider.
For more information on the differences between Grafana-managed and data source-managed alerts, refer to Introduction to alert rules.
If you are running Grafana Enterprise, you need to add specific permissions for some endpoints. For more information, refer to Role-based access control permissions.
{{< admonition type="note" >}}
In the Alerting provisioning HTTP API, the endpoints use a JSON format that differs from the format returned by the export endpoints.
The export endpoints allow you to export alerting resources in a JSON format suitable for provisioning via files. However, this format cannot be used to update resources via the HTTP API.
{{< /admonition >}}
The following endpoints can be used to manage both alert rules and recording rules. To create a recording rule, include a record block in your request instead of a condition field.
| Method | URI | Name | Summary |
|---|---|---|---|
| DELETE | /api/v1/provisioning/alert-rules/:uid | route delete alert rule | Delete a specific alert rule by UID. |
| GET | /api/v1/provisioning/alert-rules/:uid | route get alert rule | Get a specific alert rule by UID. |
| POST | /api/v1/provisioning/alert-rules | route post alert rule | Create a new alert rule. |
| PUT | /api/v1/provisioning/alert-rules/:uid | route put alert rule | Update an existing alert rule. |
| GET | /api/v1/provisioning/alert-rules/:uid/export | route get alert rule export | Export an alert rule in provisioning file format. |
| DELETE | /api/v1/provisioning/folder/:folderUid/rule-groups/:group | route delete alert rule group | Delete a rule group. |
| GET | /api/v1/provisioning/folder/:folderUid/rule-groups/:group | route get alert rule group | Get a rule group. |
| PUT | /api/v1/provisioning/folder/:folderUid/rule-groups/:group | route put alert rule group | Create or update a rule group. |
| GET | /api/v1/provisioning/folder/:folderUid/rule-groups/:group/export | route get alert rule group export | Export an alert rule group in provisioning file format. |
| GET | /api/v1/provisioning/alert-rules | route get alert rules | Get all the alert rules. |
| GET | /api/v1/provisioning/alert-rules/export | route get alert rules export | Export all alert rules in provisioning file format. |
Example request for new alert rule:
POST /api/v1/provisioning/alert-rules
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"title": "TEST-API_1",
"ruleGroup": "API",
"folderUID": "SET_FOLDER_UID",
"noDataState": "OK",
"execErrState": "OK",
"for": "5m",
"keepFiringFor": "2m",
"orgId": 1,
"uid": "",
"condition": "B",
"annotations": {
"summary": "test_api_1"
},
"labels": {
"API": "test1"
},
"data": [
{
"refId": "A",
"queryType": "",
"relativeTimeRange": {
"from": 600,
"to": 0
},
"datasourceUid": "XXXXXXXXX-XXXXXXXXX-XXXXXXXXXX",
"model": {
"expr": "up",
"hide": false,
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "A"
}
},
{
"refId": "B",
"queryType": "",
"relativeTimeRange": {
"from": 0,
"to": 0
},
"datasourceUid": "-100",
"model": {
"conditions": [
{
"evaluator": {
"params": [6],
"type": "gt"
},
"operator": {
"type": "and"
},
"query": {
"params": ["A"]
},
"reducer": {
"params": [],
"type": "last"
},
"type": "query"
}
],
"datasource": {
"type": "__expr__",
"uid": "-100"
},
"hide": false,
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "B",
"type": "classic_conditions"
}
}
]
}
HTTP/1.1 201 Created
Content-Type: application/json
{
"id": 1,
"uid": "XXXXXXXXX",
"orgID": 1,
"folderUID": "SET_FOLDER_UID",
"ruleGroup": "API3",
"title": "TEST-API_1",
"condition": "B",
"data": [
{
"refId": "A",
"queryType": "",
"relativeTimeRange": {
"from": 600,
"to": 0
},
"datasourceUid": "XXXXXXXXX-XXXXXXXXX-XXXXXXXXXX",
"model": {
"expr": "up",
"hide": false,
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "A"
}
},
{
"refId": "B",
"queryType": "",
"relativeTimeRange": {
"from": 0,
"to": 0
},
"datasourceUid": "-100",
"model": {
"conditions": [
{
"evaluator": {
"params": [
6
],
"type": "gt"
},
"operator": {
"type": "and"
},
"query": {
"params": [
"A"
]
},
"reducer": {
"params": [],
"type": "last"
},
"type": "query"
}
],
"datasource": {
"type": "__expr__",
"uid": "-100"
},
"hide": false,
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "B",
"type": "classic_conditions"
}
}
],
"updated": "2024-08-02T13:19:32.609640048Z",
"noDataState": "OK",
"execErrState": "OK",
"for": "5m",
"keepFiringFor": "2m",
"annotations": {
"summary": "test_api_1"
},
"labels": {
"API": "test1"
},
"provenance": "api",
"isPaused": false,
"notification_settings": null,
"record": null
}
Recording rules allow you to pre-compute frequently used or computationally expensive queries and save the results as a new time series metric. The same alert rule provisioning endpoints support creating recording rules by including the record field instead of alert-specific fields like condition, noDataState, or execErrState.
Example request for new recording rule:
POST /api/v1/provisioning/alert-rules
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"title": "my_recording_rule",
"ruleGroup": "recording_rules_group",
"folderUID": "SET_FOLDER_UID",
"for": "0s",
"orgId": 1,
"uid": "",
"labels": {
"team": "backend"
},
"data": [
{
"refId": "A",
"queryType": "",
"relativeTimeRange": {
"from": 600,
"to": 0
},
"datasourceUid": "PROMETHEUS_DATASOURCE_UID",
"model": {
"expr": "sum(rate(http_requests_total[5m]))",
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "A"
}
}
],
"record": {
"metric": "http_requests:rate5m:sum",
"from": "A",
"target_datasource_uid": "TARGET_PROMETHEUS_UID"
}
}
Example response:
HTTP/1.1 201 Created
Content-Type: application/json
{
"id": 2,
"uid": "YYYYYYYYY",
"orgID": 1,
"folderUID": "SET_FOLDER_UID",
"ruleGroup": "recording_rules_group",
"title": "my_recording_rule",
"for": "0s",
"data": [
{
"refId": "A",
"queryType": "",
"relativeTimeRange": {
"from": 600,
"to": 0
},
"datasourceUid": "PROMETHEUS_DATASOURCE_UID",
"model": {
"expr": "sum(rate(http_requests_total[5m]))",
"intervalMs": 1000,
"maxDataPoints": 43200,
"refId": "A"
}
}
],
"updated": "2024-08-02T14:30:15.123456789Z",
"labels": {
"team": "backend"
},
"provenance": "api",
"isPaused": false,
"record": {
"metric": "http_requests:rate5m:sum",
"from": "A",
"target_datasource_uid": "TARGET_PROMETHEUS_UID"
}
}
Important notes for recording rules:
metric field must be a valid Prometheus metric name and contain no whitespace.from field specifies which query reference (refId) to use as the source for the recorded metric.target_datasource_uid specifies which Prometheus-compatible data source to write the results to. If not specified, the default data source configured in [recording_rules].default_datasource_uid is used.condition, noDataState, execErrState, or notification_settings fields.for to 0s for recording rules as they do not have a pending state.| Method | URI | Name | Summary |
|---|---|---|---|
| DELETE | /api/v1/provisioning/contact-points/:uid | route delete contactpoints | Delete a contact point. |
| GET | /api/v1/provisioning/contact-points | route get contactpoints | Get all the contact points. |
| POST | /api/v1/provisioning/contact-points | route post contactpoints | Create a contact point. |
| PUT | /api/v1/provisioning/contact-points/:uid | route put contactpoint | Update an existing contact point. |
| GET | /api/v1/provisioning/contact-points/export | route get contactpoints export | Export all contact points in provisioning file format. |
Example Request for all the contact points:
GET /api/v1/provisioning/contact-points
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"uid": "",
"name": "email receiver",
"type": "email",
"settings": {
"addresses": "<[email protected]>"
},
"disableResolveMessage": false
}
]
The receiver permissions endpoints manage access control for contact point receivers. These endpoints allow you to assign permissions to users, teams, or built-in roles for specific receivers.
| Method | URI | Name | Summary |
|---|---|---|---|
| POST | /api/access-control/receivers/:uid/users/:userID | route set user receiver permission | Set permissions for a user on a specific receiver. |
| POST | /api/access-control/receivers/:uid/teams/:teamID | route set team receiver permission | Set permissions for a team on a specific receiver. |
| POST | /api/access-control/receivers/:uid/builtInRoles/:builtInRole | route set builtin receiver permission | Set permissions for a built-in role on a specific receiver. |
Example Request to assign permissions to a user:
POST /api/access-control/receivers/abc123/users/5
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"permission": "Edit"
}
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"message": "Permission updated"
}
Example Request to remove permissions from a team:
POST /api/access-control/receivers/abc123/teams/3
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"permission": ""
}
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"message": "Permission removed"
}
Example Request to assign permissions to a built-in role:
POST /api/access-control/receivers/abc123/builtInRoles/Viewer
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
{
"permission": "View"
}
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
{
"message": "Permission updated"
}
Available Permissions sets:
View - Read-only access to the receiver.
alert.notifications.receivers:read.Edit - Ability to update and test the receiver.
View actions plus:
alert.notifications.receivers:writealert.notifications.receivers:deletealert.notifications.receivers.test:createAdmin - Full access including managing permissions and reading secrets.
Edit actions plus:
alert.notifications.receivers.secrets:readreceivers.permissions:readreceivers.permissions:writealert.notifications.receivers.protected:write"") - Removes the permission.| Method | URI | Name | Summary |
|---|---|---|---|
| DELETE | /api/v1/provisioning/policies | route reset policy tree | Clears the notification policy tree. |
| GET | /api/v1/provisioning/policies | route get policy tree | Get the notification policy tree. |
| PUT | /api/v1/provisioning/policies | route put policy tree | Sets the notification policy tree. |
| GET | /api/v1/provisioning/policies/export | route get policy tree export | Export the notification policy tree in provisioning file format. |
Example Request for exporting the notification policy tree in YAML format:
GET /api/v1/provisioning/policies/export?format=yaml
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
Example Response:
HTTP/1.1 200 OK
Content-Type: text/yaml
apiVersion: 1
policies:
- orgId: 1
receiver: My Contact Email Point
group_by:
- grafana_folder
- alertname
routes:
- receiver: My Contact Email Point
object_matchers:
- - monitor
- =
- testdata
mute_time_intervals:
- weekends
Template groups enable you to define multiple notification templates ({{ define "" }}) within a single group. They can be managed from the Grafana Alerting UI.
| Method | URI | Name | Summary |
|---|---|---|---|
| DELETE | /api/v1/provisioning/templates/:name | route delete template | Delete a notification template group. |
| GET | /api/v1/provisioning/templates/:name | route get template | Get a notification template group. |
| GET | /api/v1/provisioning/templates | route get template | Get all notification template groups. |
| PUT | /api/v1/provisioning/templates/:name | route put template | Create or update a notification template group. |
Example Request for all notification template groups:
GET /api/v1/provisioning/templates
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"name": "custom_email.message",
"template": "{{ define \"custom_email.message\" }}\n Custom alert!\n{{ end }}",
"provenance": "file"
},
{
"name": "custom_email.subject",
"template": "{{ define \"custom_email.subject\" }}\n{{ len .Alerts.Firing }} firing alert(s), {{ len .Alerts.Resolved }} resolved alert(s)\n{{ end }}",
"provenance": "file"
}
]
| Method | URI | Name | Summary |
|---|---|---|---|
| DELETE | /api/v1/provisioning/mute-timings/:name | route delete mute timing | Delete a mute timing. |
| GET | /api/v1/provisioning/mute-timings/:name | route get mute timing | Get a mute timing. |
| GET | /api/v1/provisioning/mute-timings | route get mute timings | Get all the mute timings. |
| POST | /api/v1/provisioning/mute-timings | route post mute timing | Create a new mute timing. |
| PUT | /api/v1/provisioning/mute-timings/:name | route put mute timing | Replace an existing mute timing. |
| GET | /api/v1/provisioning/mute-timings/export | route get mute timings export | Export all mute timings in provisioning file format. |
| GET | /api/v1/provisioning/mute-timings/:name/export | route get mute timing export | Export a mute timing in provisioning file format. |
Example Request for all mute timings:
GET /api/v1/provisioning/mute-timings
Accept: application/json
Content-Type: application/json
Authorization: Bearer eyJrIjoiT0tTcG1pUlY2RnVKZTFVaDFsNFZXdE9ZWmNrMkZYbk
Example Response:
HTTP/1.1 200 OK
Content-Type: application/json
[
{
"name": "weekends",
"time_intervals": [
{
"weekdays": [
"saturday",
"sunday"
]
}
],
"version": "",
"provenance": "file"
}
]
By default, you cannot edit API-provisioned alerting resources in Grafana.
To enable editing these resources in the Grafana UI, add the X-Disable-Provenance: true header to the following API requests:
PUT /api/v1/provisioning/folder/{FolderUID}/rule-groups/{Group}: This action also sets the provenance for the rule group and all its alert rules.POST /api/v1/provisioning/alert-rules: The provenance of the new alert rule must match the provenance value configured for its rule group.POST /api/v1/provisioning/contact-pointsPOST /api/v1/provisioning/mute-timingsPUT /api/v1/provisioning/templates/{name}PUT /api/v1/provisioning/policiesTo reset the notification policy tree to the default and unlock it for editing in the Grafana UI, use:
The Alerting Provisioning HTTP API can only be used to manage Grafana-managed alert resources. To manage resources related to data source-managed alerts, consider the following tools:
Alternatively, the Grafana Alerting API can be used to access data from data source-managed alerts. This API is primarily intended for internal usage, with the exception of the /api/v1/provisioning/ endpoints. It's important to note that internal APIs may undergo changes without prior notice and are not officially supported for user consumption.
For Prometheus, amtool can also be used to interact with the AlertManager API.
DELETE /api/v1/provisioning/alert-rules/:uid
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules/{name} for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules/{name} for recording rules.
{{< /admonition >}}
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
UID | path | string | string | ✓ | Alert rule UID | |
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 204 | No Content | The alert rule was deleted successfully. | schema |
Status: No Content
DELETE /api/v1/provisioning/folder/:folderUid/rule-groups/:group
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules for recording rules.
{{< /admonition >}}
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
FolderUID | path | string | string | ✓ | ||
Group | path | string | string | ✓ | ||
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 204 | No Content | The alert rule group was deleted successfully. | schema | |
| 403 | Forbidden | ForbiddenError | schema | |
| 404 | Not Found | NotFound | schema |
Status: No Content
Status: Forbidden
Status: Not Found
DELETE /api/v1/provisioning/contact-points/:uid
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
UID | path | string | string | ✓ | UID is the contact point unique identifier |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 204 | No Content | The contact point was deleted successfully. | schema |
Status: No Content
DELETE /api/v1/provisioning/mute-timings/:name
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Mute timing name | |
version | query | string | string | Current version of the resource. Used for optimistic concurrency validation. Keep empty to bypass validation. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 204 | No Content | The mute timing was deleted successfully. | schema | |
| 409 | Conflict | GenericPublicError | schema |
Status: No Content
Status: Conflict
DELETE /api/v1/provisioning/templates/:name
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Name of the template group | |
version | query | string | string | Current version of the resource. Used for optimistic concurrency validation. Keep empty to bypass validation. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 204 | No Content | The template was deleted successfully. | schema | |
| 409 | Conflict | GenericPublicError | schema |
Status: No Content
Status: Conflict
GET /api/v1/provisioning/alert-rules/:uid
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules/{name} for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules/{name} for recording rules.
{{< /admonition >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
UID | path | string | string | ✓ | Alert rule UID |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | ProvisionedAlertRule | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/alert-rules/:uid/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
UID | path | string | string | ✓ | Alert rule UID | |
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertingFileExport | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/folder/:folderUid/rule-groups/:group
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules for recording rules.
{{< /admonition >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
FolderUID | path | string | string | ✓ | ||
Group | path | string | string | ✓ |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertRuleGroup | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/folder/:folderUid/rule-groups/:group/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
FolderUID | path | string | string | ✓ | ||
Group | path | string | string | ✓ | ||
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertingFileExport | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/alert-rules
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules for recording rules.
{{< /admonition >}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | ProvisionedAlertRules | schema |
Status: OK
GET /api/v1/provisioning/alert-rules/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertingFileExport | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/contact-points
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | query | string | string | Filter by name |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | ContactPoints | schema |
Status: OK
GET /api/v1/provisioning/contact-points/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
decrypt | query | boolean | bool | Whether any contained secure settings should be decrypted or left redacted. Redacted settings will contain RedactedValue instead. Currently, only org admin can view decrypted secure settings. | ||
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. | |
name | query | string | string | Filter by name |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertingFileExport | schema | |
| 403 | Forbidden | PermissionDenied | schema |
Status: OK
Status: Forbidden
POST /api/access-control/receivers/:uid/users/:userID
This endpoint sets or removes permissions for a specific user on a receiver. To remove a permission, send an empty string as the permission value.
{{< admonition type="note" >}}
This endpoint requires Grafana Enterprise and the user must have the receivers.permissions:write permission for the specified receiver.
{{< /admonition >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
uid | path | string | string | ✓ | UID of the receiver | |
userID | path | int64 | int64 | ✓ | ID of the user to assign permissions to | |
body | body | object | object | ✓ | JSON body with permission field: View, Edit, Admin, or "" (empty to remove) |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | Permission updated | schema | |
| 400 | Bad Request | Invalid request | schema | |
| 403 | Forbidden | Permission denied | schema |
Status: OK
{
"message": "Permission updated"
}
Status: Bad Request
Status: Forbidden
POST /api/access-control/receivers/:uid/teams/:teamID
This endpoint sets or removes permissions for a specific team on a receiver. To remove a permission, send an empty string as the permission value.
{{< admonition type="note" >}}
This endpoint requires Grafana Enterprise and the user must have the receivers.permissions:write permission for the specified receiver.
{{< /admonition >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
uid | path | string | string | ✓ | UID of the receiver | |
teamID | path | int64 | int64 | ✓ | ID of the team to assign permissions to | |
body | body | object | object | ✓ | JSON body with permission field: View, Edit, Admin, or "" (empty to remove) |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | Permission updated | schema | |
| 400 | Bad Request | Invalid request | schema | |
| 403 | Forbidden | Permission denied | schema |
Status: OK
{
"message": "Permission updated"
}
Status: Bad Request
Status: Forbidden
POST /api/access-control/receivers/:uid/builtInRoles/:builtInRole
This endpoint sets or removes permissions for a built-in role on a receiver. To remove a permission, send an empty string as the permission value.
{{< admonition type="note" >}}
This endpoint requires Grafana Enterprise and the user must have the receivers.permissions:write permission for the specified receiver.
{{< /admonition >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
uid | path | string | string | ✓ | UID of the receiver | |
builtInRole | path | string | string | ✓ | Built-in role name: Viewer, Editor, or Admin | |
body | body | object | object | ✓ | JSON body with permission field: View, Edit, Admin, or "" (empty to remove) |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | Permission updated | schema | |
| 400 | Bad Request | Invalid request | schema | |
| 403 | Forbidden | Permission denied | schema |
Status: OK
{
"message": "Permission updated"
}
Status: Bad Request
Status: Forbidden
GET /api/v1/provisioning/mute-timings/:name
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Mute timing name |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | MuteTimeInterval | schema | |
| 404 | Not Found | Not found. | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/mute-timings
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | MuteTimings | schema |
Status: OK
GET /api/v1/provisioning/mute-timings/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | MuteTimingsExport | schema | |
| 403 | Forbidden | PermissionDenied | schema |
Status: OK
Status: Forbidden
GET /api/v1/provisioning/mute-timings/:name/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Mute timing name. | |
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | MuteTimingExport | schema | |
| 403 | Forbidden | PermissionDenied | schema |
Status: OK
Status: Forbidden
GET /api/v1/provisioning/policies
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | Route | schema |
Status: OK
GET /api/v1/provisioning/policies/export
{{< docs/shared lookup="alerts/alerting-provisioning-export-produces.md" source="grafana" version="<GRAFANA_VERSION>" >}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
download | query | boolean | bool | Whether to initiate a download of the file or not. | ||
format | query | string | string | yaml | Format of the downloaded file, either yaml, json or hcl. Accept header can also be used, but the query parameter will take precedence. |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertingFileExport | schema | |
| 404 | Not Found | NotFound | schema |
Status: OK
Status: Not Found
GET /api/v1/provisioning/templates/:name
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Name of the template group |
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | NotificationTemplate | schema | |
| 404 | Not Found | GenericPublicError | schema |
Status: OK
GET /api/v1/provisioning/templates
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | NotificationTemplates | schema |
Status: OK
POST /api/v1/provisioning/alert-rules
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules for recording rules.
{{< /admonition >}}
This action creates a new alert rule.
The provenance (X-Disable-Provenance) of the new rule must match the provenance configured for its rule group. Mixing provisioned and unprovisioned alert rules within the same rule group is not allowed.
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | ProvisionedAlertRule | models.ProvisionedAlertRule |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 201 | Created | ProvisionedAlertRule | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: Created
Status: Bad Request
POST /api/v1/provisioning/contact-points
When creating a contact point, the EmbeddedContactPoint.name property determines if the new contact point is added to an existing one. In the UI, contact points with the same name are grouped together under a single contact point.
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | EmbeddedContactPoint | models.EmbeddedContactPoint |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 202 | Accepted | EmbeddedContactPoint | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: Accepted
Status: Bad Request
POST /api/v1/provisioning/mute-timings
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | MuteTimeInterval | models.MuteTimeInterval |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 201 | Created | MuteTimeInterval | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: Created
Status: Bad Request
PUT /api/v1/provisioning/alert-rules/:uid
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules/{name} for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules/{name} for recording rules.
{{< /admonition >}}
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
| ---------------------------- | ------ | ----------------------------------------------- | ----------------------------- | :------: | ------- | --------------------------------------------------------- | --- |
| UID | path | string | string | ✓ | | Alert rule UID |
| X-Disable-Provenance: true | header | string | string | | | Allows editing of provisioned resources in the Grafana UI |
| Body | body | ProvisionedAlertRule | models.ProvisionedAlertRule | | | | |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | ProvisionedAlertRule | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: OK
Status: Bad Request
PUT /api/v1/provisioning/folder/:folderUid/rule-groups/:group
{{< admonition type="warning" >}}
This API is deprecated and will be removed in a future release. Use the Grafana App Platform alerting APIs instead: /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/alertrules for alert rules and /apis/rules.alerting.grafana.app/v0alpha1/namespaces/{namespace}/recordingrules for recording rules.
{{< /admonition >}}
This action also changes the provenance setting (X-Disable-Provenance) for all alert rules in the alert group.
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
FolderUID | path | string | string | ✓ | ||
Group | path | string | string | ✓ | ||
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI. This also applies to all alert rules within the alert group. | ||
Body | body | AlertRuleGroup | models.AlertRuleGroup | This action is idempotent and rules included in this body will overwrite configured rules for the group |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | AlertRuleGroup | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: OK
Status: Bad Request
PUT /api/v1/provisioning/contact-points/:uid
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
UID | path | string | string | ✓ | UID is the contact point unique identifier | |
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | EmbeddedContactPoint | models.EmbeddedContactPoint |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 202 | Accepted | Ack | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: Accepted
Status: Bad Request
PUT /api/v1/provisioning/mute-timings/:name
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
name | path | string | string | ✓ | Mute timing name | |
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | MuteTimeInterval | models.MuteTimeInterval |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 200 | OK | MuteTimeInterval | schema | |
| 400 | Bad Request | ValidationError | schema | |
| 409 | Conflict | GenericPublicError | schema |
Status: OK
Status: Bad Request
Status: Conflict
{{< docs/shared lookup="alerts/warning-provisioning-tree.md" source="grafana" version="<GRAFANA_VERSION>" >}}
PUT /api/v1/provisioning/policies
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
|---|---|---|---|---|---|---|
X-Disable-Provenance: true | header | string | string | Allows editing of provisioned resources in the Grafana UI | ||
Body | body | Route | models.Route | The new notification routing tree to use |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 202 | Accepted | Ack | schema | |
| 400 | Bad Request | ValidationError | schema |
Status: Accepted
Status: Bad Request
PUT /api/v1/provisioning/templates/:name
{{% responsive-table %}}
| Name | Source | Type | Go type | Required | Default | Description |
| ---------------------------- | ------ | ------------------------------------------------------------- | ------------------------------------ | -------- | :-----: | --------------------------------------------------------- | --- |
| name | path | string | string | ✓ | | Name of the template group |
| X-Disable-Provenance: true | header | string | string | | | Allows editing of provisioned resources in the Grafana UI |
| Body | body | NotificationTemplateContent | models.NotificationTemplateContent | | | | |
{{% /responsive-table %}}
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 202 | Accepted | NotificationTemplate | schema | |
| 400 | Bad Request | GenericPublicError | schema | |
| 409 | Conflict | GenericPublicError | schema |
Status: Accepted
Status: Bad Request
Status: Conflict
DELETE /api/v1/provisioning/policies
| Code | Status | Description | Has headers | Schema |
|---|---|---|---|---|
| 202 | Accepted | Ack | schema |
Status: Accepted
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
datasourceUid | string | string | Grafana data source unique identifier; it should be 'expr' for a Server Side Expression operation. | |||
model | interface{} | interface{} | JSON is the raw JSON query and includes the above properties as well as custom properties. | |||
queryType | string | string | QueryType is an optional identifier for the type of query. It can be used to distinguish different types of queries. | |||
refId | string | string | RefID is the unique identifier of the query, set by the frontend call. | |||
relativeTimeRange | RelativeTimeRange | RelativeTimeRange |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
datasourceUid | string | string | ||||
model | interface{} | interface{} | ||||
queryType | string | string | ||||
refId | string | string | ||||
relativeTimeRange | RelativeTimeRange | RelativeTimeRange |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
annotations | map of string | map[string]string | ||||
condition | string | string | ||||
dashboardUid | string | string | ||||
data | []AlertQueryExport | []*AlertQueryExport | ||||
execErrState | string | string | ||||
for | Duration | Duration | ||||
keepFiringFor | Duration | Duration | How long the alert continues to fire after the condition is no longer met. Prevents alert flapping. | 2m | ||
isPaused | boolean | bool | ||||
labels | map of string | map[string]string | ||||
noDataState | string | string | ||||
panelId | int64 (formatted integer) | int64 | ||||
title | string | string | ||||
uid | string | string |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
folderUid | string | string | ||||
interval | int64 (formatted integer) | int64 | ||||
rules | []ProvisionedAlertRule | []*ProvisionedAlertRule | ||||
title | string | string |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
folder | string | string | ||||
interval | Duration | Duration | ||||
name | string | string | ||||
orgId | int64 (formatted integer) | int64 | ||||
rules | []AlertRuleExport | []*AlertRuleExport |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
apiVersion | int64 (formatted integer) | int64 | ||||
contactPoints | []ContactPointExport | []*ContactPointExport | ||||
groups | []AlertRuleGroupExport | []*AlertRuleGroupExport | ||||
policies | []NotificationPolicyExport | []*NotificationPolicyExport |
{{% /responsive-table %}}
Properties
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
name | string | string | ||||
orgId | int64 (formatted integer) | int64 | ||||
receivers | []ReceiverExport | []*ReceiverExport |
| Name | Type | Go type | Default | Description | Example |
|---|---|---|---|---|---|
Duration | string | int64 |
EmbeddedContactPoint is the contact point type used by Grafana-managed alerts.
When creating a contact point, the EmbeddedContactPoint.name property determines if the new contact point is added to an existing one. In the UI, contact points with the same name are grouped together under a single contact point.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
disableResolveMessage | boolean | bool | false | |||
name | string | string | name groups multiple contact points with the same name in the UI. | webhook_1 | ||
provenance | string | string | ||||
settings | JSON | JSON | ✓ | |||
type | string | string | ✓ | webhook | ||
uid | string | string | UID is the unique identifier of the contact point. The UID can be set by the user. | my_external_reference |
{{% /responsive-table %}}
| Name | Type | Go type | Default | Description | Example |
|---|---|---|---|---|---|
MatchType | int64 (formatted integer) | int64 |
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
Name | string | string | ||||
Type | MatchType | MatchType | ||||
Value | string | string |
{{% /responsive-table %}}
Matchers is a slice of Matchers that is sortable, implements Stringer, and provides a Matches method to match a LabelSet against all Matchers in the slice. Note that some users of Matchers might require it to be sorted.
[]Matcher
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
name | string | string | ||||
time_intervals | []TimeInterval | []*TimeInterval | ||||
version | string | string | Version of resource |
{{% /responsive-table %}}
Properties
Properties
Properties
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
Policy | RouteExport | RouteExport | inline | |||
orgId | int64 (formatted integer) | int64 |
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
name | string | string | ||||
provenance | Provenance | Provenance | ||||
template | string | string | ||||
version | string | string | Version of resource |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
template | string | string | ||||
version | string | string | Version of resource. Should be empty for new templates. |
{{% /responsive-table %}}
| Name | Type | Go type | Default | Description | Example |
|---|---|---|---|---|---|
Provenance | string | string |
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
annotations | map of string | map[string]string | Optional key-value pairs. __dashboardUid__ and __panelId__ must be set together; one cannot be set without the other. | {"runbook_url":"https://supercoolrunbook.com/page/13"} | ||
condition | string | string | ✓ | A | ||
data | []AlertQuery | []*AlertQuery | ✓ | [{"datasourceUid":"__expr__","model":{"conditions":[{"evaluator":{"params":[0,0],"type":"gt"},"operator":{"type":"and"},"query":{"params":[]},"reducer":{"params":[],"type":"avg"},"type":"query"}],"datasource":{"type":"__expr__","uid":"__expr__"},"expression":"1 == 1","hide":false,"intervalMs":1000,"maxDataPoints":43200,"refId":"A","type":"math"},"queryType":"","refId":"A","relativeTimeRange":{"from":0,"to":0}}] | ||
| execErrState | string | string | ✓ | |||
folderUID | string | string | ✓ | project_x | ||
for | Duration | Duration | ✓ | |||
id | int64 (formatted integer) | int64 | ||||
isPaused | boolean | bool | false | |||
labels | map of string | map[string]string | {"team":"sre-team-1"} | |||
noDataState | string | string | ✓ | |||
orgID | int64 (formatted integer) | `int64 | ✓ | |||
provenance | Provenance | Provenance | ||||
record | Record | Record | Recording rule configuration. If present, this is a recording rule instead of an alert rule. | {"metric":"http_requests:rate5m:sum","from":"A","target_datasource_uid":"my-prom"} | ||
ruleGroup | string | string | ✓ | eval_group_1 | ||
title | string | string | ✓ | Always firing | ||
uid | string | string | ||||
updated | date-time (formatted string) | strfmt.DateTime |
{{% /responsive-table %}}
Record defines the configuration for a recording rule, which pre-computes query results and saves them as a new time series metric.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
metric | string | string | ✓ | The name of the new metric to create. Must be a valid Prometheus metric name with no whitespace. | http_requests:rate5m:sum | |
from | string | string | ✓ | The query reference ID (refId) to use as the source for the recorded metric. | A | |
target_datasource_uid | string | string | UID of the Prometheus-compatible data source to write results to. Falls back to configured default if not specified. | my-prometheus-datasource-uid |
{{% /responsive-table %}}
Properties
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
disableResolveMessage | boolean | bool | ||||
settings | RawMessage | RawMessage | ||||
type | string | string | ||||
uid | string | string |
A Regexp is safe for concurrent use by multiple goroutines, except for configuration methods, such as Longest.
RelativeTimeRange is the per query start and end time for requests.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
from | Duration | Duration | ||||
to | Duration | Duration |
{{% /responsive-table %}}
A Route is a node that contains definitions of how to handle alerts. This is modified from the upstream alertmanager in that it adds the ObjectMatchers property.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
continue | boolean | bool | ||||
group_by | []string | []string | ||||
group_interval | string | string | ||||
group_wait | string | string | ||||
match | map of string | map[string]string | Deprecated. Remove before v1.0 release. | |||
match_re | MatchRegexps | MatchRegexps | ||||
matchers | Matchers | Matchers | ||||
mute_time_intervals | []string | []string | ||||
object_matchers | ObjectMatchers | ObjectMatchers | ||||
provenance | Provenance | Provenance | ||||
receiver | string | string | ||||
repeat_interval | string | string | ||||
routes | []Route | []*Route |
{{% /responsive-table %}}
RouteExport is the provisioned file export of definitions.Route. This is needed to hide fields that aren't usable in provisioning file format. An alternative would be to define a custom MarshalJSON and MarshalYAML that excludes them.
Properties
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
continue | boolean | bool | ||||
group_by | []string | []string | ||||
group_interval | string | string | ||||
group_wait | string | string | ||||
match | map of string | map[string]string | Deprecated. Remove before v1.0 release. | |||
match_re | MatchRegexps | MatchRegexps | ||||
matchers | Matchers | Matchers | ||||
mute_time_intervals | []string | []string | ||||
object_matchers | ObjectMatchers | ObjectMatchers | ||||
receiver | string | string | ||||
repeat_interval | string | string | ||||
routes | []RouteExport | []*RouteExport |
TimeInterval describes intervals of time. ContainsTime will tell you if a golang time is contained within the interval.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
days_of_month | []string | []string | ||||
location | string | string | ||||
months | []string | []string | ||||
times | []TimeRange | []*TimeRange | ||||
weekdays | []string | []string | ||||
years | []string | []string |
{{% /responsive-table %}}
For example, 4:00PM to End of the day would Begin at 1020 and End at 1440.
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
end_time | string | string | "end_time": "24:00" | |||
start_time | string | string | "start_time": "18:00" |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
msg | string | string | error message |
{{% /responsive-table %}}
Properties
{{% responsive-table %}}
| Name | Type | Go type | Required | Default | Description | Example |
|---|---|---|---|---|---|---|
statusCode | string | string | ✓ | HTTP Status Code | ||
messageId | string | string | ✓ | Unique code of the error | ||
message | string | string | Error message | |||
extra | map of any | map[string]any | Extra information about the error. Format is specific to the error code. |
{{% /responsive-table %}}