Created
March 10, 2014 09:36
-
-
Save tisba/9462045 to your computer and use it in GitHub Desktop.
Grafana 1.5.0 config.js for InfluxDB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
define(['settings'], | |
function (Settings) { | |
return new Settings({ | |
datasources: { | |
influx: { | |
type: 'influxdb', | |
url: 'http://localhost:8086/db/test', | |
username: 'user', | |
password: 'user', | |
} | |
}, | |
default_route: '/dashboard/file/default.json', | |
timezoneOffset: null, | |
grafana_index: "grafana-dash", | |
panel_names: [ | |
'text', | |
'graphite' | |
] | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment