Commit 305e12be by Torkel Ödegaard

Updated changelog and config.sample.js with info about #633

parent 30ad784d
...@@ -9,6 +9,7 @@ ...@@ -9,6 +9,7 @@
- [Issue #581](https://github.com/grafana/grafana/issues/581). InfluxDB: Add continuous query in series results (series typeahead). - [Issue #581](https://github.com/grafana/grafana/issues/581). InfluxDB: Add continuous query in series results (series typeahead).
- [Issue #584](https://github.com/grafana/grafana/issues/584). InfluxDB: Support for alias & alias patterns when using raw query mode - [Issue #584](https://github.com/grafana/grafana/issues/584). InfluxDB: Support for alias & alias patterns when using raw query mode
- [Issue #394](https://github.com/grafana/grafana/issues/394). InfluxDB: Annotation support - [Issue #394](https://github.com/grafana/grafana/issues/394). InfluxDB: Annotation support
- [Issue #633](https://github.com/grafana/grafana/issues/633). InfluxDB: InfluxDB can now act as a datastore for dashboards
- [Issue #610](https://github.com/grafana/grafana/issues/610). InfluxDB: Support for InfluxdB v0.8 list series response schemea (series typeahead) - [Issue #610](https://github.com/grafana/grafana/issues/610). InfluxDB: Support for InfluxdB v0.8 list series response schemea (series typeahead)
- [Issue #266](https://github.com/grafana/grafana/issues/266). Graphite: New option cacheTimeout to override graphite default memcache timeout - [Issue #266](https://github.com/grafana/grafana/issues/266). Graphite: New option cacheTimeout to override graphite default memcache timeout
- [Issue #606](https://github.com/grafana/grafana/issues/606). General: New global option in config.js to specify admin password (useful to hinder users from accidentally make changes) - [Issue #606](https://github.com/grafana/grafana/issues/606). General: New global option in config.js to specify admin password (useful to hinder users from accidentally make changes)
......
...@@ -10,8 +10,8 @@ function (Settings) { ...@@ -10,8 +10,8 @@ function (Settings) {
return new Settings({ return new Settings({
// datasources // datasources
// Delete the ones you do not want // Delete the ones you do not want, you can add multiple of the same type
// grafanaDB: true marks the datasource for use as dashboard storage // grafanaDB: true marks the datasource for use as dashboard storage (only supported by elasticsearch and influxdb datasources)
datasources: { datasources: {
graphite: { graphite: {
type: 'graphite', type: 'graphite',
...@@ -28,7 +28,7 @@ function (Settings) { ...@@ -28,7 +28,7 @@ function (Settings) {
// For Basic authentication use: http://username:password@domain.com:9200 // For Basic authentication use: http://username:password@domain.com:9200
elasticsearch: { elasticsearch: {
type: 'elasticsearch', type: 'elasticsearch',
url: "http://"+window.location.hostname+":9200" url: "http://"+window.location.hostname+":9200",
index: 'grafana-dash', // index for storing dashboards index: 'grafana-dash', // index for storing dashboards
grafanaDB: true, grafanaDB: true,
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment