Only start the webhook server with at least one webhook input.

This commit is contained in:
Cyril Duez
2016-05-27 10:40:12 +02:00
parent b95244cd65
commit d401b71262
2 changed files with 12 additions and 8 deletions

View File

@@ -329,8 +329,9 @@ func (a *Agent) Run(shutdown chan struct{}) error {
metricC := make(chan telegraf.Metric, 10000)
webserver := webserver.NewWebserver(a.Config.Agent.WebhookServiceAddress)
// Handle special input plugin: Start any ServiceInput and
// Register any WebhookInput
for _, input := range a.Config.Inputs {
// Start service of any ServicePlugins
switch p := input.Input.(type) {
case telegraf.ServiceInput:
acc := createAccumulatorForInput(a, input, metricC)
@@ -347,9 +348,9 @@ func (a *Agent) Run(shutdown chan struct{}) error {
input.Name, err.Error())
return err
}
webserver.StartOnce()
}
}
webserver.Start()
// Round collection to nearest interval by sleeping
if a.Config.Agent.RoundInterval {