-
Notifications
You must be signed in to change notification settings - Fork 6
/
plugin.json
65 lines (65 loc) · 1.83 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
61
62
63
64
65
{
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
"type": "app",
"name": "Grafana Dashboard Reporter",
"id": "mahendrapaipuri-dashboardreporter-app",
"backend": true,
"executable": "gpx_dashboardreporter-app",
"info": {
"keywords": ["report", "pdf", "dashboards", "api"],
"description": "A Grafana plugin app that generates PDF reports from Grafana dashboards",
"author": {
"name": "Mahendra Paipuri"
},
"logos": {
"small": "img/logo.svg",
"large": "img/logo.svg"
},
"links": [
{
"name": "Project site",
"url": "https://github.com/mahendrapaipuri/grafana-dashboard-reporter-app"
},
{
"name": "License & Terms",
"url": "https://github.com/mahendrapaipuri/grafana-dashboard-reporter-app/blob/main/LICENSE"
}
],
"screenshots": [
{ "name": "Configuration (Dark)", "path": "img/dark.png" },
{ "name": "Configuration (Light)", "path": "img/light.png" }
],
"version": "%VERSION%",
"updated": "%TODAY%"
},
"includes": [
{
"type": "page",
"name": "Status",
"path": "/a/%PLUGIN_ID%/status",
"role": "Viewer",
"addToNav": true,
"defaultNav": true
},
{
"type": "page",
"icon": "cog",
"name": "Configuration",
"path": "/plugins/%PLUGIN_ID%",
"role": "Admin",
"addToNav": false
}
],
"dependencies": {
"grafanaDependency": ">=10.0.3",
"plugins": []
},
"iam": {
"permissions": [
{ "action": "dashboards:read", "scope": "folders:uid:*" },
{ "action": "annotations:read", "scope": "annotations:type:*" },
{ "action": "datasources:query", "scope": "datasources:*" },
{ "action": "users.permissions:read", "scope": "users:*" }
]
}
}