rename config section to ifql
Renaming for discoverability for the initial release of ifqlpull/9098/head
parent
080b2ec781
commit
40ffa49a62
|
@ -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"`
|
||||
|
|
|
@ -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]
|
||||
###
|
||||
|
|
Loading…
Reference in New Issue