Add webhook service address in the config file.

This commit is contained in:
Cyril Duez 2016-05-27 13:31:23 +02:00
parent 7c7b01ed24
commit 1b71e60d14
3 changed files with 11 additions and 1 deletions

View File

@ -61,6 +61,9 @@
## If set to true, do no set the "host" tag in the telegraf agent.
omit_hostname = false
## Address to listen for webhook
webhook_service_address = ":1925"
###############################################################################
# OUTPUT PLUGINS #

View File

@ -49,6 +49,9 @@
## Override default hostname, if empty use os.Hostname()
hostname = ""
## Address to listen for webhook
webhook_service_address = ":1925"
###############################################################################
# OUTPUTS #

View File

@ -59,6 +59,7 @@ func NewConfig() *Config {
RoundInterval: true,
FlushInterval: internal.Duration{Duration: 10 * time.Second},
FlushJitter: internal.Duration{Duration: 5 * time.Second},
WebhookServiceAddress: ":1925",
},
Tags: make(map[string]string),
@ -123,7 +124,7 @@ type AgentConfig struct {
Hostname string
OmitHostname bool
//
// Address for listening webhooks
WebhookServiceAddress string
}
@ -222,6 +223,9 @@ var header = `# Telegraf Configuration
## If set to true, do no set the "host" tag in the telegraf agent.
omit_hostname = false
## Address to listen for webhook
webhook_service_address = ":1925"
###############################################################################
# OUTPUT PLUGINS #