Update plugin config in config file.

This commit is contained in:
Cyril Duez 2016-05-27 11:28:03 +02:00
parent 9a5be78719
commit cab64f1a0b
2 changed files with 5 additions and 6 deletions

View File

@ -1397,9 +1397,8 @@
# # A Github Webhook Event collector
# [[inputs.github_webhooks]]
# ## Address and port to host Webhook listener on
# service_address = ":1618"
# ## Path of the global server
# path = "/github"
# # Read metrics from Kafka topic(s)
# [[inputs.kafka_consumer]]
@ -1479,8 +1478,8 @@
# # A Rollbar Webhook Event collector
# [[inputs.rollbar_webhooks]]
# ## Address and port to host Webhook listener on
# service_address = ":1619"
# ## Path of the global server
# path = "/rollbar"
# # Statsd Server

View File

@ -30,7 +30,7 @@ func NewGithubWebhooks() *GithubWebhooks {
func (gh *GithubWebhooks) SampleConfig() string {
return `
## Address and port to host Webhook listener on
## Path of the global server
path = "/github"
`
}