forked from cpanato/mattermost-plugin-alertmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.json
More file actions
48 lines (48 loc) · 1.74 KB
/
plugin.json
File metadata and controls
48 lines (48 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"id": "com.cpanato.alertmanager",
"name": "AlertManager",
"description": "Alermanager plugin for Mattermost, you can receive alerts and interact with alertmanager.",
"version": "0.0.1",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"settings_schema": {
"header": "",
"footer": "",
"settings": [
{
"key": "Team",
"display_name": "Team:",
"type": "text",
"help_text": "Team you want to send messages to. Use team URL, instead of a display name."
},
{
"key": "Channel",
"display_name": "Channel:",
"type": "text",
"help_text": "Channel you want to send messages to. Use channel URL such as 'town-square', instead of a display name. If you specify a channel that does not exist, this plugin creates a new channel with that name."
},
{
"key": "Username",
"display_name": "User:",
"type": "username",
"help_text": "Select the username that this integration is attached to."
},
{
"key": "Token",
"display_name": "Token:",
"type": "generated",
"help_text": "The token used to configure the webhook for Statuspage. The token is validates for each webhook request by the Mattermost server."
},
{
"key": "AlertManagerURL",
"display_name": "AlertManager URL:",
"type": "text",
"help_text": "AlertManager URL."
}]
}
}