-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathplugin.json
44 lines (44 loc) · 1.88 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
{
"id": "com.github.manland.mattermost-plugin-fyi",
"name": "FYI",
"description": "Mattermost plugin to create Grafana annotation.",
"homepage_url": "https://github.com/Lujeni/mattermost-plugin-fyi",
"support_url": "https://github.com/Lujeni/mattermost-plugin-fyi",
"icon_path": "assets/icon.svg",
"version": "1.0.0",
"min_server_version": "5.10.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": "To set up the Grafana Annotation plugin, you need to register a Grafana API KEY https://grafana.com/docs/grafana/latest/http_api/auth/.",
"settings": [
{
"key": "GrafanaURL",
"display_name": "Grafana URL",
"type": "text",
"placeholder": "https://grafana.com",
"help_text": "The base URL for using the plugin with a Grafana installation. Examples: https://grafana.example.com"
},
{
"key": "GrafanaAPIKey",
"display_name": "Grafana API Key",
"type": "text",
"placeholder": "eyJrIjoiabUdzREMwcDEiLCJuIjoiZnlpIiwiaWQiOjF9",
"help_text": "The client ID for the OAuth app registered with GitLab."
},
{
"key": "Tags",
"display_name": "Grafana Annotations Tags",
"type": "text",
"placeholder": "business,outage,reboot",
"help_text": "(Optional) Allow this Grafana annotations tags (strict mode)."
}
],
"footer": "To report an issue, make a suggestion or a contribution, [check the repository](https://github.com/Lujeni/fyi)."
}
}