Skip to content
This repository has been archived by the owner on Jun 4, 2023. It is now read-only.

Commit

Permalink
db: populate new Grafana dashboards for demo
Browse files Browse the repository at this point in the history
And also use `?kiosk` mode.
  • Loading branch information
vincentbernat committed Nov 29, 2016
1 parent 39638e8 commit 04da608
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions lib/db/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,20 +55,20 @@ function initialize() {
return g.create()
.then(function() {
return g
.addDashboard('http://play.grafana.org/',
{ description: 'Grafana Play Home',
.addDashboard('http://play.grafana.org/dashboard/db/alerting?kiosk',
{ description: 'Grafana Alerts',
timeout: 120 });
})
.then(function() {
return g
.addDashboard('http://play.grafana.org/dashboard/db/graph-styles',
{ description: 'Graph styles',
.addDashboard('http://play.grafana.org/dashboard/db/prometheus-demo-dashboard?kiosk',
{ description: 'Promotheus Demo',
timeout: 120 });
})
.then(function() {
return g
.addDashboard('http://play.grafana.org/dashboard/db/stats',
{ description: 'Stats',
.addDashboard('http://play.grafana.org/dashboard/db/elasticsearch-metrics?kiosk',
{ description: 'Elasticsearch Metrics',
timeout: 120 });
});
})
Expand Down

0 comments on commit 04da608

Please sign in to comment.