-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathplugin.json
More file actions
56 lines (56 loc) · 1.33 KB
/
plugin.json
File metadata and controls
56 lines (56 loc) · 1.33 KB
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
{
"$schema": "https://raw.githubusercontent.com/grafana/grafana/master/docs/sources/developers/plugins/plugin.schema.json",
"name": "netdata",
"type": "datasource",
"id": "netdatacloud-netdata-datasource",
"metrics": true,
"info": {
"description": "netdata datasource plugin",
"author": {
"name": "Netdata",
"url": "https://www.netdata.cloud"
},
"keywords": ["netdata", "datasource", "plugin"],
"logos": {
"small": "img/logo.svg",
"large": "img/logo.svg"
},
"links": [
{
"name": "Website",
"url": "https://github.com/netdata/netdata-grafana-datasource-plugin"
},
{
"name": "License",
"url": "https://github.com/netdata/netdata-grafana-datasource-plugin/blob/master/LICENSE"
}
],
"screenshots": [
{
"name": "main",
"path": "img/screenshot.png"
}
],
"version": "%VERSION%",
"updated": "%TODAY%"
},
"routes": [
{
"path": "base",
"url": "https://app.netdata.cloud/api",
"headers": [
{
"name": "Content-Type",
"content": "application/json"
},
{
"name": "Authorization",
"content": "Bearer {{ .SecureJsonData.apiToken }}"
}
]
}
],
"dependencies": {
"grafanaDependency": ">=10.0.0"
}
}