rename config section to ifql

Renaming for discoverability for the initial release of ifql
pull/9098/head
Stuart Carnie 2017-11-13 11:01:27 -08:00
parent 080b2ec781
commit 40ffa49a62
2 changed files with 19 additions and 1 deletions

View File

@ -49,7 +49,7 @@ type Config struct {
Monitor monitor.Config `toml:"monitor"`
Subscriber subscriber.Config `toml:"subscriber"`
HTTPD httpd.Config `toml:"http"`
Storage storage.Config `toml:"storage"`
Storage storage.Config `toml:"ifql"`
GraphiteInputs []graphite.Config `toml:"graphite"`
CollectdInputs []collectd.Config `toml:"collectd"`
OpenTSDBInputs []opentsdb.Config `toml:"opentsdb"`

View File

@ -252,6 +252,24 @@
# The maximum size of a client request body, in bytes. Setting this value to 0 disables the limit.
# max-body-size = 25000000
###
### [ifql]
###
### Configures the ifql RPC API.
###
[ifql]
# Determines whether the RPC service is enabled.
# enabled = true
# Determines whether additional logging is enabled.
# log-enabled = true
# The bind address used by the ifql RPC service.
# bind-address = ":8082"
###
### [subscriber]
###