Skip to content

Commit

Permalink
Merge pull request #9098 from influxdata/sgc-ifql
Browse files Browse the repository at this point in the history
rename config section to ifql
  • Loading branch information
stuartcarnie authored Nov 13, 2017
2 parents 080b2ec + 40ffa49 commit ae0b28a
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/influxd/run/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"`
Expand Down
18 changes: 18 additions & 0 deletions etc/config.sample.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
###
Expand Down

0 comments on commit ae0b28a

Please sign in to comment.