Merge pull request #2087 from influxdb/_internal_not_internal

Use _internal as default self-monitoring database
pull/2093/head
Philip O'Toole 2015-03-26 17:13:44 -07:00
commit 5e08351a27
2 changed files with 2 additions and 2 deletions

View File

@ -196,7 +196,7 @@ func NewConfig() (*Config, error) {
c.ReportingDisabled = false
c.Statistics.Enabled = false
c.Statistics.Database = "internal"
c.Statistics.Database = "_internal"
c.Statistics.RetentionPolicy = "default"
c.Statistics.WriteInterval = Duration(1 * time.Minute)

View File

@ -99,6 +99,6 @@ raft-tracing = false # If true, enables detailed logging of Raft consensus.
# as any other data.
[statistics]
enabled = false
database = "internal" # The database to which the data is written.
database = "_internal" # The database to which the data is written.
retention-policy = "default" # The retention policy within the database.
write-interval = "1m" # Period between writing the data.