Commit 0ec74763 by bergquist

examples(plugin.json): add includes info

parent 138c738d
...@@ -34,6 +34,11 @@ ...@@ -34,6 +34,11 @@
"updated": "2015-02-10" "updated": "2015-02-10"
}, },
"includes": [
{"type": "panel", "name": "Nginx Panel"},
{"type": "datasource", "name": "Nginx Datasource"}
],
"dependencies": { "dependencies": {
"grafanaVersion": "3.x.x", "grafanaVersion": "3.x.x",
"plugins": [ "plugins": [
......
export default class NginxDatasource {
constructor() {}
query(options) {
return [];
}
testDatasource() {
return false;
}
}
import {Datasource} from './datasource';
export {
Datasource
};
\ No newline at end of file
{
"type": "datasource",
"name": "Nginx Datasource",
"id": "nginx-datasource"
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment