2019-12-04 20:38:33 +05:30
|
|
|
# Generic alerts integration **(ULTIMATE)**
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
> [Introduced](https://gitlab.com/gitlab-org/gitlab/issues/13203) in [GitLab Ultimate](https://about.gitlab.com/pricing/) 12.4.
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
GitLab can accept alerts from any source via a generic webhook receiver.
|
|
|
|
When you set up the generic alerts integration, a unique endpoint will
|
|
|
|
be created which can receive a payload in JSON format, and will in turn
|
|
|
|
create an issue with the payload in the body of the issue. You can always
|
|
|
|
[customize the payload](#customizing-the-payload) to your liking.
|
|
|
|
|
|
|
|
The entire payload will be posted in the issue discussion as a comment
|
|
|
|
authored by the GitLab Alert Bot.
|
|
|
|
|
|
|
|
## Setting up generic alerts
|
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
To set up the generic alerts integration:
|
2019-12-04 20:38:33 +05:30
|
|
|
|
2019-12-21 20:55:43 +05:30
|
|
|
1. Navigate to **Settings > Integrations** in a project.
|
2019-12-26 22:10:19 +05:30
|
|
|
1. Click on **Alerts endpoint**.
|
2019-12-21 20:55:43 +05:30
|
|
|
1. Toggle the **Active** alert setting. The `URL` and `Authorization Key` for the webhook configuration can be found there.
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
## Customizing the payload
|
|
|
|
|
|
|
|
You can customize the payload by sending the following parameters. All fields are optional:
|
|
|
|
|
|
|
|
| Property | Type | Description |
|
|
|
|
| -------- | ---- | ----------- |
|
|
|
|
| `title` | String | The title of the incident. If none is provided, then `New: Incident #N` will be used, where `#N` is the number of incident |
|
|
|
|
| `description` | String | A high-level summary of the problem. |
|
|
|
|
| `start_time` | DateTime | The time of the incident. If none is provided, a timestamp of the issue will be used. |
|
|
|
|
| `service` | String | The affected service. |
|
|
|
|
| `monitoring_tool` | String | The name of the associated monitoring tool. |
|
|
|
|
| `hosts` | String or Array | One or more hosts, as to where this incident ocurred. |
|
|
|
|
|
|
|
|
Example request:
|
|
|
|
|
|
|
|
```sh
|
2019-12-21 20:55:43 +05:30
|
|
|
curl --request POST \
|
|
|
|
--data '{"title": "Incident title"}' \
|
2019-12-26 22:10:19 +05:30
|
|
|
--header "Authorization: Bearer <authorization_key>" \
|
2019-12-21 20:55:43 +05:30
|
|
|
--header "Content-Type: application/json" \
|
|
|
|
<url>
|
2019-12-04 20:38:33 +05:30
|
|
|
```
|
|
|
|
|
2019-12-26 22:10:19 +05:30
|
|
|
The `<authorization_key>` and `<url>` values can be found when [setting up generic alerts](#setting-up-generic-alerts).
|
2019-12-04 20:38:33 +05:30
|
|
|
|
|
|
|
Example payload:
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"title": "Incident title",
|
|
|
|
"description": "Short description of the incident",
|
|
|
|
"start_time": "2019-09-12T06:00:55Z",
|
|
|
|
"service": "service affected",
|
|
|
|
"monitoring_tool": "value",
|
|
|
|
"hosts": "value",
|
|
|
|
}
|
|
|
|
```
|