-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathplugin.json
62 lines (62 loc) · 1.29 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
{
"$schema": "https://raw.githubusercontent.com/grafana/grafana/main/docs/sources/developers/plugins/plugin.schema.json",
"type": "app",
"name": "Basic App",
"id": "myorg-basic-app",
"info": {
"keywords": [
"basic",
"app",
"example"
],
"description": "A basic grafana app plugin",
"author": {
"name": "Your name"
},
"logos": {
"small": "img/logo.svg",
"large": "img/logo.svg"
},
"screenshots": [],
"version": "%VERSION%",
"updated": "%TODAY%"
},
"includes": [
{
"type": "page",
"name": "Page One",
"path": "/a/%PLUGIN_ID%/one",
"role": "Admin",
"addToNav": true,
"defaultNav": true
},
{
"type": "page",
"name": "Page Two",
"path": "/a/%PLUGIN_ID%/two",
"role": "Admin",
"addToNav": true,
"defaultNav": false
},
{
"type": "page",
"name": "Page Three",
"path": "/a/%PLUGIN_ID%/three",
"role": "Admin",
"addToNav": true,
"defaultNav": false
},
{
"type": "page",
"icon": "cog",
"name": "Configuration",
"path": "/plugins/%PLUGIN_ID%",
"role": "Admin",
"addToNav": true
}
],
"dependencies": {
"grafanaDependency": ">=10.3.3",
"plugins": []
}
}