plugin.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "type": "app",
  3. "name": "Nginx",
  4. "id": "nginx-app",
  5. "staticRoot": ".",
  6. "pages": [
  7. { "name": "Live stream", "component": "StreamPageCtrl", "role": "Editor"},
  8. { "name": "Log view", "component": "LogsPageCtrl", "role": "Viewer"}
  9. ],
  10. "css": {
  11. "dark": "css/dark.css",
  12. "light": "css/light.css"
  13. },
  14. "info": {
  15. "description": "Official Grafana Nginx App & Dashboard bundle",
  16. "author": {
  17. "name": "Nginx Inc.",
  18. "url": "http://nginx.com"
  19. },
  20. "keywords": ["nginx"],
  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. "includes": [
  33. {"type": "dashboard", "name": "Nginx Connection stats", "path": "dashboards/nginx_connection_stats.json"},
  34. {"type": "panel", "name": "Nginx Panel"},
  35. {"type": "datasource", "name": "Nginx Datasource"}
  36. ],
  37. "dependencies": {
  38. "grafanaVersion": "3.x.x",
  39. "plugins": [
  40. {"type": "datasource", "id": "graphite", "name": "Graphite", "version": "1.0.0"},
  41. {"type": "panel", "id": "graph", "name": "Graph", "version": "1.0.0"}
  42. ]
  43. }
  44. }