Files
grafana/tests/app-plugin-json/plugin.json

49 lines
1.1 KiB
JSON
Raw Normal View History

2016-01-08 20:57:58 +01:00
{
"type": "app",
"name": "App Example",
"id": "app-example",
"staticRoot":" ./public",
"module": "app",
"pages": [
{"name": "Example1", "url": "/app-example", "reqRole": "Editor"}
],
"css": {
"light": "css/plugin.dark.css",
"dark": "css/plugin.light.css"
},
2016-01-08 20:57:58 +01:00
"info": {
"description": "Example Grafana App",
"author": {
"name": "Raintank Inc.",
"url": "http://raintank.io"
},
"keywords": ["example"],
"logos": {
"small": "img/logo_small.png",
"large": "img/logo_large.png"
2016-01-08 20:57:58 +01:00
},
"screenshots": [
{"name": "img1", "path": "img/screenshot1.png"},
{"name": "img2", "path": "img/screenshot2.png"}
],
2016-01-08 20:57:58 +01:00
"links": [
{"name": "Project site", "url": "http://project.com"},
{"name": "License & Terms", "url": "http://license.com"}
],
"version": "1.0.0",
"updated": "2015-02-10"
},
"dependencies": {
"grafanaVersion": "2.6.x",
"plugins": [
{"type": "datasource", "id": "graphite", "name": "Graphite", "version": "1.0.0"},
{"type": "panel", "id": "graph", "name": "Graph", "version": "1.0.0"}
]
}
}