Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
D
docs
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
docs
Commits
61ce8bdc
Commit
61ce8bdc
authored
Apr 01, 2016
by
Michael Stapelberg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
document pushover configuration
fixes #345
parent
a63f4a08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
0 deletions
+33
-0
configuration.md
content/docs/alerting/configuration.md
+33
-0
No files found.
content/docs/alerting/configuration.md
View file @
61ce8bdc
...
@@ -205,6 +205,8 @@ email_configs:
...
@@ -205,6 +205,8 @@ email_configs:
[ - <email_config>, ... ]
[ - <email_config>, ... ]
pagerduty_configs:
pagerduty_configs:
[ - <pagerduty_config>, ... ]
[ - <pagerduty_config>, ... ]
pushover_configs:
[ - <pushover_config>, ... ]
slack_configs:
slack_configs:
[ - <slack_config>, ... ]
[ - <slack_config>, ... ]
opsgenie_configs:
opsgenie_configs:
...
@@ -266,6 +268,37 @@ service_key: <tmpl_string>
...
@@ -266,6 +268,37 @@ service_key: <tmpl_string>
} ]
} ]
```
```
## Pushover receiver `<pushover_config>`
Pushover notifications are sent via the
[
Pushover API
](
https://pushover.net/api
)
.
```
# The recipient user’s user key.
user_key: <string>
# Your registered application’s API token, see https://pushover.net/apps
token: <string>
# Notification title.
[ title: <tmpl_string> | default = '{{ template "pushover.default.title" . }}' ]
# Notification message.
[ message: <tmpl_string> | default = '{{ template "pushover.default.message" . }}' ]
# A supplementary URL shown alongside the message.
[ url: <tmpl_string> | default = '{{ template "pushover.default.url" . }}' ]
# Priority, see https://pushover.net/api#priority
[ priority: <tmpl_string> | default = '{{ if eq .Status "firing" }}2{{ else }}0{{ end }}' ]
# How often the Pushover servers will send the same notification to the user.
# Must be at least 30 seconds.
[ retry: <duration> | default = 1m ]
# How long your notification will continue to be retried for, unless the user
# acknowledges the notification.
[ expire: <duration> | default = 1h ]
```
## Slack receiver `<slack_config>`
## Slack receiver `<slack_config>`
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment