mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Updated changelog and config.sample.js with info about #633
This commit is contained in:
parent
30ad784d95
commit
305e12be1d
@ -9,6 +9,7 @@
|
||||
- [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 #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 #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)
|
||||
|
@ -10,8 +10,8 @@ function (Settings) {
|
||||
return new Settings({
|
||||
|
||||
// datasources
|
||||
// Delete the ones you do not want
|
||||
// grafanaDB: true marks the datasource for use as dashboard storage
|
||||
// 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 (only supported by elasticsearch and influxdb datasources)
|
||||
datasources: {
|
||||
graphite: {
|
||||
type: 'graphite',
|
||||
@ -28,7 +28,7 @@ function (Settings) {
|
||||
// For Basic authentication use: http://username:password@domain.com:9200
|
||||
elasticsearch: {
|
||||
type: 'elasticsearch',
|
||||
url: "http://"+window.location.hostname+":9200"
|
||||
url: "http://"+window.location.hostname+":9200",
|
||||
index: 'grafana-dash', // index for storing dashboards
|
||||
grafanaDB: true,
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user