-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
51 lines (51 loc) · 1.92 KB
/
plugin.json
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
49
50
51
{
"id": "com.zentavr.pingdom",
"name": "Pingdom Notifications",
"description": "This plugin serves the API endpoints which accept Pingdom events via webhooks.",
"homepage_url": "https://github.com/zentavr/mattermost-plugin-pingdom",
"support_url": "https://github.com/zentavr/mattermost-plugin-pingdom/issues",
"icon_path": "assets/pingdom-seeklogo.svg",
"version": "0.0.2",
"min_server_version": "7.5.0",
"server": {
"executables": {
"linux-amd64": "server/dist/plugin-linux-amd64",
"linux-arm64": "server/dist/plugin-linux-arm64",
"darwin-amd64": "server/dist/plugin-darwin-amd64",
"darwin-arm64": "server/dist/plugin-darwin-arm64",
"windows-amd64": "server/dist/plugin-windows-amd64.exe"
}
},
"webapp": {
"bundle_path": "webapp/dist/main.js"
},
"settings_schema": {
"header": "Configure your Pingdom incoming webhook settings below.",
"sections": [
{
"key": "GeneralSettings",
"title": "Pingdom webhooks settings",
"subtitle": "Settings for the Pingdom Webhooks",
"custom": true,
"settings": [
{
"key": "PingdomHooksConfigs",
"type": "custom",
"display_name": "Pingdom incoming webhook settings.",
"help_text": "Configures incoming webhook from Pingdom",
"hosting": "on-prem"
}
]
}
],
"settings": [
{
"key": "PingdomHooksConfigs",
"type": "custom",
"display_name": "Pingdom incoming webhook configuration.",
"help_text": "Configures incoming webhook from Pingdom",
"hosting": "on-prem"
}
]
}
}