Difference between revisions of "Grafana"

From air
Jump to navigation Jump to search
(Created page with "http://grafana.org/ An open source, feature rich metrics dashboard and graph editor for Graphite, InfluxDB & OpenTSDB")
 
Line 2: Line 2:
   
 
An open source, feature rich metrics dashboard and graph editor for [[Graphite]], [[InfluxDB]] & [[OpenTSDB]]
 
An open source, feature rich metrics dashboard and graph editor for [[Graphite]], [[InfluxDB]] & [[OpenTSDB]]
  +
Requires a web server (Apache HTTPD, Nginx, ...) or Express (see below with [[Node.js]])
  +
  +
  +
  +
  +
<pre>
  +
var connect = require('connect')
  +
var serveStatic = require('serve-static')
  +
  +
var app = connect()
  +
  +
app.use(serveStatic('.', {'index': ['index.html', 'index.htm']}))
  +
app.listen(8080)
  +
</pre>
  +
  +
<pre>
  +
npm install connect serve-static
  +
node serveGrafana.js
  +
</pre>

Revision as of 21:42, 1 December 2014

http://grafana.org/

An open source, feature rich metrics dashboard and graph editor for Graphite, InfluxDB & OpenTSDB Requires a web server (Apache HTTPD, Nginx, ...) or Express (see below with Node.js)



var connect = require('connect')
var serveStatic = require('serve-static')

var app = connect()

app.use(serveStatic('.', {'index': ['index.html', 'index.htm']}))
app.listen(8080)
npm install connect serve-static
node serveGrafana.js