plugin.json 1009 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "type": "app",
  3. "name": "App Example",
  4. "id": "app-example",
  5. "staticRoot":" ./public",
  6. "module": "app",
  7. "pages": [
  8. {"name": "Example1", "url": "/app-example", "reqRole": "Editor"}
  9. ],
  10. "css": {
  11. "light": "css/plugin.dark.css",
  12. "dark": "css/plugin.light.css"
  13. },
  14. "info": {
  15. "description": "Example Grafana App",
  16. "author": {
  17. "name": "Raintank Inc.",
  18. "url": "http://raintank.io"
  19. },
  20. "keywords": ["example"],
  21. "logos": {
  22. "small": "img/logo_small.png",
  23. "large": "img/logo_large.png"
  24. },
  25. "links": [
  26. {"name": "Project site", "url": "http://project.com"},
  27. {"name": "License & Terms", "url": "http://license.com"}
  28. ],
  29. "version": "1.0.0",
  30. "updated": "2015-02-10"
  31. },
  32. "dependencies": {
  33. "grafanaVersion": "2.6.x",
  34. "plugins": [
  35. {"type": "datasource", "id": "graphite", "name": "Graphite", "version": "1.0.0"},
  36. {"type": "panel", "id": "graph", "name": "Graph", "version": "1.0.0"}
  37. ]
  38. }
  39. }