forked from mattermost-community/mattermost-plugin-nagios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplugin.json
60 lines (60 loc) · 2.55 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
52
53
54
55
56
57
58
59
60
{
"id": "nagios",
"name": "Nagios",
"description": "Nagios plugin for Mattermost",
"homepage_url": "https://github.com/mattermost/mattermost-plugin-nagios",
"support_url": "https://github.com/mattermost/mattermost-plugin-nagios/issues",
"release_notes_url": "https://github.com/mattermost/mattermost-plugin-nagios/releases/tag/v1.1.0",
"icon_path": "assets/orbit-467260.svg",
"version": "1.1.0",
"min_server_version": "5.12.0",
"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": "Having problems configuring the plugin? [Check the configuration guide](https://github.com/mattermost/mattermost-plugin-nagios/#configuring-the-plugin).",
"footer": "To report an issue, make a suggestion or a contribution, or fork your own version of the plugin, [check the repository](https://github.com/mattermost/mattermost-plugin-nagios).",
"settings": [
{
"key": "NagiosURL",
"display_name": "Nagios URL",
"type": "text",
"help_text": "The URL for your Nagios instance. Must start with http:// or https://."
},
{
"key": "Token",
"display_name": "Token",
"type": "generated",
"help_text": "The token for the configuration files watcher."
},
{
"key": "InitialLogsLimit",
"display_name": "Initial logs limit",
"type": "number",
"help_text": "Limit the initial number of logs the get-logs action fetches.",
"placeholder": "Integer",
"default": 50
},
{
"key": "InitialLogsStartTime",
"display_name": "Initial logs start time",
"type": "number",
"help_text": "Specify the initial age of the oldest log the get-logs action fetches.",
"placeholder": "Seconds",
"default": 86400
},
{
"key": "InitialReportFrequency",
"display_name": "Initial report frequency",
"type": "number",
"help_text": "Set the initial frequency of system monitoring reports.",
"placeholder": "Minutes",
"default": 1
}
]
}
}