2015-05-22 23:45:14 +00:00
|
|
|
package telegraf
|
2015-04-01 16:34:32 +00:00
|
|
|
|
|
|
|
import (
|
2015-10-23 17:23:08 +00:00
|
|
|
"crypto/rand"
|
2015-05-18 21:10:12 +00:00
|
|
|
"fmt"
|
2015-04-01 16:34:32 +00:00
|
|
|
"log"
|
2015-10-23 17:23:08 +00:00
|
|
|
"math/big"
|
2015-04-07 16:56:40 +00:00
|
|
|
"os"
|
2015-05-20 05:19:32 +00:00
|
|
|
"sync"
|
2015-04-07 16:23:35 +00:00
|
|
|
"time"
|
2015-04-01 16:34:32 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
"github.com/influxdb/telegraf/internal/config"
|
2015-08-07 20:31:25 +00:00
|
|
|
"github.com/influxdb/telegraf/outputs"
|
2015-05-22 23:45:14 +00:00
|
|
|
"github.com/influxdb/telegraf/plugins"
|
2015-10-16 22:13:32 +00:00
|
|
|
|
|
|
|
"github.com/influxdb/influxdb/client/v2"
|
2015-04-01 16:34:32 +00:00
|
|
|
)
|
|
|
|
|
2015-08-04 14:58:32 +00:00
|
|
|
// Agent runs telegraf and collects data based on the given config
|
2015-04-01 16:34:32 +00:00
|
|
|
type Agent struct {
|
2015-11-24 21:22:11 +00:00
|
|
|
Config *config.Config
|
2015-04-01 16:34:32 +00:00
|
|
|
}
|
|
|
|
|
2015-08-04 14:58:32 +00:00
|
|
|
// NewAgent returns an Agent struct based off the given Config
|
2015-11-24 21:22:11 +00:00
|
|
|
func NewAgent(config *config.Config) (*Agent, error) {
|
2015-11-26 01:42:07 +00:00
|
|
|
a := &Agent{
|
|
|
|
Config: config,
|
2015-09-02 16:30:44 +00:00
|
|
|
}
|
2015-04-01 16:34:32 +00:00
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
if a.Config.Agent.Hostname == "" {
|
2015-04-07 16:56:40 +00:00
|
|
|
hostname, err := os.Hostname()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
a.Config.Agent.Hostname = hostname
|
2015-11-24 01:00:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
config.Tags["host"] = a.Config.Agent.Hostname
|
2015-05-22 23:33:38 +00:00
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
return a, nil
|
2015-04-07 00:24:24 +00:00
|
|
|
}
|
|
|
|
|
2015-08-12 17:04:25 +00:00
|
|
|
// Connect connects to all configured outputs
|
2015-08-04 14:58:32 +00:00
|
|
|
func (a *Agent) Connect() error {
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, o := range a.Config.Outputs {
|
|
|
|
switch ot := o.Output.(type) {
|
2015-10-22 16:17:57 +00:00
|
|
|
case outputs.ServiceOutput:
|
|
|
|
if err := ot.Start(); err != nil {
|
|
|
|
log.Printf("Service for output %s failed to start, exiting\n%s\n",
|
2015-11-24 21:22:11 +00:00
|
|
|
o.Name, err.Error())
|
2015-10-22 16:17:57 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
if a.Config.Agent.Debug {
|
2015-11-24 21:22:11 +00:00
|
|
|
log.Printf("Attempting connection to output: %s\n", o.Name)
|
2015-09-09 21:56:10 +00:00
|
|
|
}
|
2015-11-24 21:22:11 +00:00
|
|
|
err := o.Output.Connect()
|
2015-08-07 20:31:25 +00:00
|
|
|
if err != nil {
|
2015-11-24 21:22:11 +00:00
|
|
|
log.Printf("Failed to connect to output %s, retrying in 15s\n", o.Name)
|
2015-09-19 01:02:16 +00:00
|
|
|
time.Sleep(15 * time.Second)
|
2015-11-24 21:22:11 +00:00
|
|
|
err = o.Output.Connect()
|
2015-09-19 01:02:16 +00:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-08-07 20:31:25 +00:00
|
|
|
}
|
2015-11-26 01:42:07 +00:00
|
|
|
if a.Config.Agent.Debug {
|
2015-11-24 21:22:11 +00:00
|
|
|
log.Printf("Successfully connected to output: %s\n", o.Name)
|
2015-08-26 17:02:10 +00:00
|
|
|
}
|
2015-04-01 16:34:32 +00:00
|
|
|
}
|
2015-08-07 20:31:25 +00:00
|
|
|
return nil
|
|
|
|
}
|
2015-04-01 16:34:32 +00:00
|
|
|
|
2015-08-12 17:04:25 +00:00
|
|
|
// Close closes the connection to all configured outputs
|
|
|
|
func (a *Agent) Close() error {
|
|
|
|
var err error
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, o := range a.Config.Outputs {
|
|
|
|
err = o.Output.Close()
|
|
|
|
switch ot := o.Output.(type) {
|
2015-10-22 16:17:57 +00:00
|
|
|
case outputs.ServiceOutput:
|
|
|
|
ot.Stop()
|
|
|
|
}
|
2015-08-12 17:04:25 +00:00
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-10-16 22:13:32 +00:00
|
|
|
// gatherParallel runs the plugins that are using the same reporting interval
|
2015-08-26 17:02:10 +00:00
|
|
|
// as the telegraf agent.
|
2015-10-16 22:13:32 +00:00
|
|
|
func (a *Agent) gatherParallel(pointChan chan *client.Point) error {
|
2015-05-20 05:19:32 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
2015-09-28 20:08:28 +00:00
|
|
|
start := time.Now()
|
|
|
|
counter := 0
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, plugin := range a.Config.Plugins {
|
|
|
|
if plugin.Config.Interval != 0 {
|
2015-05-20 05:19:32 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
wg.Add(1)
|
2015-09-28 20:08:28 +00:00
|
|
|
counter++
|
2015-11-24 21:22:11 +00:00
|
|
|
go func(plugin *config.RunningPlugin) {
|
2015-05-20 05:19:32 +00:00
|
|
|
defer wg.Done()
|
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
acc := NewAccumulator(plugin.Config, pointChan)
|
2015-11-26 01:42:07 +00:00
|
|
|
acc.SetDebug(a.Config.Agent.Debug)
|
2015-12-11 20:07:32 +00:00
|
|
|
// acc.SetPrefix(plugin.Name + "_")
|
2015-11-26 01:42:07 +00:00
|
|
|
acc.SetDefaultTags(a.Config.Tags)
|
2015-05-20 05:19:32 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
if err := plugin.Plugin.Gather(acc); err != nil {
|
|
|
|
log.Printf("Error in plugin [%s]: %s", plugin.Name, err)
|
2015-08-22 20:03:30 +00:00
|
|
|
}
|
|
|
|
|
2015-05-20 05:19:32 +00:00
|
|
|
}(plugin)
|
|
|
|
}
|
|
|
|
|
2015-12-01 21:05:24 +00:00
|
|
|
if counter == 0 {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-05-20 05:19:32 +00:00
|
|
|
wg.Wait()
|
|
|
|
|
2015-09-28 20:08:28 +00:00
|
|
|
elapsed := time.Since(start)
|
2015-10-20 22:45:31 +00:00
|
|
|
log.Printf("Gathered metrics, (%s interval), from %d plugins in %s\n",
|
2015-11-26 01:42:07 +00:00
|
|
|
a.Config.Agent.Interval, counter, elapsed)
|
2015-10-16 22:13:32 +00:00
|
|
|
return nil
|
2015-04-01 16:34:32 +00:00
|
|
|
}
|
|
|
|
|
2015-10-16 22:13:32 +00:00
|
|
|
// gatherSeparate runs the plugins that have been configured with their own
|
2015-08-26 17:02:10 +00:00
|
|
|
// reporting interval.
|
2015-10-16 22:13:32 +00:00
|
|
|
func (a *Agent) gatherSeparate(
|
|
|
|
shutdown chan struct{},
|
2015-11-24 21:22:11 +00:00
|
|
|
plugin *config.RunningPlugin,
|
2015-10-16 22:13:32 +00:00
|
|
|
pointChan chan *client.Point,
|
|
|
|
) error {
|
2015-11-24 21:22:11 +00:00
|
|
|
ticker := time.NewTicker(plugin.Config.Interval)
|
2015-05-20 05:19:32 +00:00
|
|
|
|
|
|
|
for {
|
2015-08-26 23:43:09 +00:00
|
|
|
var outerr error
|
2015-09-28 20:08:28 +00:00
|
|
|
start := time.Now()
|
2015-05-20 05:19:32 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
acc := NewAccumulator(plugin.Config, pointChan)
|
2015-11-26 01:42:07 +00:00
|
|
|
acc.SetDebug(a.Config.Agent.Debug)
|
2015-12-11 20:07:32 +00:00
|
|
|
// acc.SetPrefix(plugin.Name + "_")
|
2015-11-26 01:42:07 +00:00
|
|
|
acc.SetDefaultTags(a.Config.Tags)
|
2015-08-26 23:43:09 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
if err := plugin.Plugin.Gather(acc); err != nil {
|
|
|
|
log.Printf("Error in plugin [%s]: %s", plugin.Name, err)
|
2015-09-02 16:30:44 +00:00
|
|
|
}
|
2015-05-20 05:19:32 +00:00
|
|
|
|
2015-09-28 20:08:28 +00:00
|
|
|
elapsed := time.Since(start)
|
2015-10-20 22:45:31 +00:00
|
|
|
log.Printf("Gathered metrics, (separate %s interval), from %s in %s\n",
|
2015-11-24 21:22:11 +00:00
|
|
|
plugin.Config.Interval, plugin.Name, elapsed)
|
2015-08-26 23:43:09 +00:00
|
|
|
|
|
|
|
if outerr != nil {
|
|
|
|
return outerr
|
2015-08-07 20:31:25 +00:00
|
|
|
}
|
2015-05-20 05:19:32 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-shutdown:
|
|
|
|
return nil
|
|
|
|
case <-ticker.C:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-04 14:58:32 +00:00
|
|
|
// Test verifies that we can 'Gather' from all plugins with their configured
|
|
|
|
// Config struct
|
2015-04-07 00:24:24 +00:00
|
|
|
func (a *Agent) Test() error {
|
2015-10-16 22:13:32 +00:00
|
|
|
shutdown := make(chan struct{})
|
|
|
|
defer close(shutdown)
|
|
|
|
pointChan := make(chan *client.Point)
|
2015-04-07 00:24:24 +00:00
|
|
|
|
2015-10-22 00:32:43 +00:00
|
|
|
// dummy receiver for the point channel
|
|
|
|
go func() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-pointChan:
|
|
|
|
// do nothing
|
|
|
|
case <-shutdown:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2015-04-07 00:24:24 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, plugin := range a.Config.Plugins {
|
|
|
|
acc := NewAccumulator(plugin.Config, pointChan)
|
2015-10-16 22:13:32 +00:00
|
|
|
acc.SetDebug(true)
|
2015-12-11 20:07:32 +00:00
|
|
|
// acc.SetPrefix(plugin.Name + "_")
|
2015-05-20 05:19:32 +00:00
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
fmt.Printf("* Plugin: %s, Collection 1\n", plugin.Name)
|
|
|
|
if plugin.Config.Interval != 0 {
|
|
|
|
fmt.Printf("* Internal: %s\n", plugin.Config.Interval)
|
2015-05-20 05:19:32 +00:00
|
|
|
}
|
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
if err := plugin.Plugin.Gather(acc); err != nil {
|
2015-04-07 00:24:24 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-09-21 17:05:58 +00:00
|
|
|
|
2015-09-23 20:54:22 +00:00
|
|
|
// Special instructions for some plugins. cpu, for example, needs to be
|
|
|
|
// run twice in order to return cpu usage percentages.
|
2015-11-24 21:22:11 +00:00
|
|
|
switch plugin.Name {
|
2015-11-03 00:23:40 +00:00
|
|
|
case "cpu", "mongodb":
|
2015-09-23 20:54:22 +00:00
|
|
|
time.Sleep(500 * time.Millisecond)
|
2015-11-24 21:22:11 +00:00
|
|
|
fmt.Printf("* Plugin: %s, Collection 2\n", plugin.Name)
|
|
|
|
if err := plugin.Plugin.Gather(acc); err != nil {
|
2015-09-23 20:54:22 +00:00
|
|
|
return err
|
|
|
|
}
|
2015-09-21 17:05:58 +00:00
|
|
|
}
|
2015-04-07 00:24:24 +00:00
|
|
|
|
2015-09-23 20:54:22 +00:00
|
|
|
}
|
2015-04-07 00:24:24 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2015-10-21 20:05:27 +00:00
|
|
|
// writeOutput writes a list of points to a single output, with retries.
|
|
|
|
// Optionally takes a `done` channel to indicate that it is done writing.
|
2015-10-21 16:57:51 +00:00
|
|
|
func (a *Agent) writeOutput(
|
|
|
|
points []*client.Point,
|
2015-11-24 21:22:11 +00:00
|
|
|
ro *config.RunningOutput,
|
2015-10-21 16:57:51 +00:00
|
|
|
shutdown chan struct{},
|
2015-10-21 20:05:27 +00:00
|
|
|
wg *sync.WaitGroup,
|
2015-10-21 16:57:51 +00:00
|
|
|
) {
|
2015-10-21 20:05:27 +00:00
|
|
|
defer wg.Done()
|
|
|
|
if len(points) == 0 {
|
|
|
|
return
|
|
|
|
}
|
2015-10-21 16:57:51 +00:00
|
|
|
retry := 0
|
2015-11-26 01:42:07 +00:00
|
|
|
retries := a.Config.Agent.FlushRetries
|
2015-10-20 22:45:31 +00:00
|
|
|
start := time.Now()
|
2015-10-16 22:13:32 +00:00
|
|
|
|
2015-10-21 16:57:51 +00:00
|
|
|
for {
|
2015-12-01 14:15:28 +00:00
|
|
|
filtered := ro.FilterPoints(points)
|
|
|
|
err := ro.Output.Write(filtered)
|
2015-10-21 20:05:27 +00:00
|
|
|
if err == nil {
|
|
|
|
// Write successful
|
|
|
|
elapsed := time.Since(start)
|
|
|
|
log.Printf("Flushed %d metrics to output %s in %s\n",
|
2015-12-01 14:15:28 +00:00
|
|
|
len(filtered), ro.Name, elapsed)
|
2015-10-21 20:05:27 +00:00
|
|
|
return
|
|
|
|
}
|
2015-10-21 16:57:51 +00:00
|
|
|
|
|
|
|
select {
|
|
|
|
case <-shutdown:
|
|
|
|
return
|
|
|
|
default:
|
2015-10-21 20:05:27 +00:00
|
|
|
if retry >= retries {
|
2015-10-21 16:57:51 +00:00
|
|
|
// No more retries
|
|
|
|
msg := "FATAL: Write to output [%s] failed %d times, dropping" +
|
|
|
|
" %d metrics\n"
|
2015-11-24 21:22:11 +00:00
|
|
|
log.Printf(msg, ro.Name, retries+1, len(points))
|
2015-10-21 16:57:51 +00:00
|
|
|
return
|
|
|
|
} else if err != nil {
|
|
|
|
// Sleep for a retry
|
|
|
|
log.Printf("Error in output [%s]: %s, retrying in %s",
|
2015-11-26 01:42:07 +00:00
|
|
|
ro.Name, err.Error(), a.Config.Agent.FlushInterval.Duration)
|
|
|
|
time.Sleep(a.Config.Agent.FlushInterval.Duration)
|
2015-10-16 22:13:32 +00:00
|
|
|
}
|
2015-10-21 16:57:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
retry++
|
2015-10-16 22:13:32 +00:00
|
|
|
}
|
2015-10-21 16:57:51 +00:00
|
|
|
}
|
2015-10-16 22:13:32 +00:00
|
|
|
|
2015-10-21 16:57:51 +00:00
|
|
|
// flush writes a list of points to all configured outputs
|
2015-10-21 20:05:27 +00:00
|
|
|
func (a *Agent) flush(
|
|
|
|
points []*client.Point,
|
|
|
|
shutdown chan struct{},
|
|
|
|
wait bool,
|
|
|
|
) {
|
|
|
|
var wg sync.WaitGroup
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, o := range a.Config.Outputs {
|
2015-10-21 20:05:27 +00:00
|
|
|
wg.Add(1)
|
|
|
|
go a.writeOutput(points, o, shutdown, &wg)
|
|
|
|
}
|
|
|
|
if wait {
|
|
|
|
wg.Wait()
|
2015-10-21 16:57:51 +00:00
|
|
|
}
|
2015-10-16 22:13:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// flusher monitors the points input channel and flushes on the minimum interval
|
|
|
|
func (a *Agent) flusher(shutdown chan struct{}, pointChan chan *client.Point) error {
|
2015-10-20 22:45:31 +00:00
|
|
|
// Inelegant, but this sleep is to allow the Gather threads to run, so that
|
|
|
|
// the flusher will flush after metrics are collected.
|
|
|
|
time.Sleep(time.Millisecond * 100)
|
2015-10-23 17:23:08 +00:00
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
ticker := time.NewTicker(a.Config.Agent.FlushInterval.Duration)
|
2015-10-16 22:13:32 +00:00
|
|
|
points := make([]*client.Point, 0)
|
2015-10-23 17:23:08 +00:00
|
|
|
|
2015-10-16 22:13:32 +00:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-shutdown:
|
2015-10-21 16:57:51 +00:00
|
|
|
log.Println("Hang on, flushing any cached points before shutdown")
|
2015-10-21 20:05:27 +00:00
|
|
|
a.flush(points, shutdown, true)
|
2015-10-16 22:13:32 +00:00
|
|
|
return nil
|
|
|
|
case <-ticker.C:
|
2015-10-23 17:23:08 +00:00
|
|
|
a.flush(points, shutdown, false)
|
2015-10-16 22:13:32 +00:00
|
|
|
points = make([]*client.Point, 0)
|
|
|
|
case pt := <-pointChan:
|
|
|
|
points = append(points, pt)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-10-23 17:23:08 +00:00
|
|
|
// jitterInterval applies the the interval jitter to the flush interval using
|
|
|
|
// crypto/rand number generator
|
|
|
|
func jitterInterval(ininterval, injitter time.Duration) time.Duration {
|
|
|
|
var jitter int64
|
|
|
|
outinterval := ininterval
|
|
|
|
if injitter.Nanoseconds() != 0 {
|
|
|
|
maxjitter := big.NewInt(injitter.Nanoseconds())
|
|
|
|
if j, err := rand.Int(rand.Reader, maxjitter); err == nil {
|
|
|
|
jitter = j.Int64()
|
|
|
|
}
|
|
|
|
outinterval = time.Duration(jitter + ininterval.Nanoseconds())
|
|
|
|
}
|
|
|
|
|
|
|
|
if outinterval.Nanoseconds() < time.Duration(500*time.Millisecond).Nanoseconds() {
|
|
|
|
log.Printf("Flush interval %s too low, setting to 500ms\n", outinterval)
|
|
|
|
outinterval = time.Duration(500 * time.Millisecond)
|
|
|
|
}
|
|
|
|
|
|
|
|
return outinterval
|
|
|
|
}
|
|
|
|
|
2015-08-04 14:58:32 +00:00
|
|
|
// Run runs the agent daemon, gathering every Interval
|
2015-04-07 16:23:58 +00:00
|
|
|
func (a *Agent) Run(shutdown chan struct{}) error {
|
2015-05-20 05:19:32 +00:00
|
|
|
var wg sync.WaitGroup
|
|
|
|
|
2015-11-26 01:42:07 +00:00
|
|
|
a.Config.Agent.FlushInterval.Duration = jitterInterval(a.Config.Agent.FlushInterval.Duration,
|
|
|
|
a.Config.Agent.FlushJitter.Duration)
|
2015-10-23 17:23:08 +00:00
|
|
|
|
|
|
|
log.Printf("Agent Config: Interval:%s, Debug:%#v, Hostname:%#v, "+
|
|
|
|
"Flush Interval:%s\n",
|
2015-11-26 01:42:07 +00:00
|
|
|
a.Config.Agent.Interval, a.Config.Agent.Debug,
|
|
|
|
a.Config.Agent.Hostname, a.Config.Agent.FlushInterval)
|
2015-10-23 17:23:08 +00:00
|
|
|
|
2015-10-16 22:13:32 +00:00
|
|
|
// channel shared between all plugin threads for accumulating points
|
|
|
|
pointChan := make(chan *client.Point, 1000)
|
|
|
|
|
2015-10-21 20:05:27 +00:00
|
|
|
// Round collection to nearest interval by sleeping
|
2015-11-26 01:42:07 +00:00
|
|
|
if a.Config.Agent.RoundInterval {
|
|
|
|
i := int64(a.Config.Agent.Interval.Duration)
|
2015-10-21 20:05:27 +00:00
|
|
|
time.Sleep(time.Duration(i - (time.Now().UnixNano() % i)))
|
|
|
|
}
|
2015-11-26 01:42:07 +00:00
|
|
|
ticker := time.NewTicker(a.Config.Agent.Interval.Duration)
|
2015-10-21 20:05:27 +00:00
|
|
|
|
2015-10-16 22:13:32 +00:00
|
|
|
wg.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer wg.Done()
|
|
|
|
if err := a.flusher(shutdown, pointChan); err != nil {
|
|
|
|
log.Printf("Flusher routine failed, exiting: %s\n", err.Error())
|
|
|
|
close(shutdown)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
2015-11-24 21:22:11 +00:00
|
|
|
for _, plugin := range a.Config.Plugins {
|
2015-09-24 18:06:11 +00:00
|
|
|
|
|
|
|
// Start service of any ServicePlugins
|
2015-11-24 21:22:11 +00:00
|
|
|
switch p := plugin.Plugin.(type) {
|
2015-09-24 18:06:11 +00:00
|
|
|
case plugins.ServicePlugin:
|
|
|
|
if err := p.Start(); err != nil {
|
|
|
|
log.Printf("Service for plugin %s failed to start, exiting\n%s\n",
|
2015-11-24 21:22:11 +00:00
|
|
|
plugin.Name, err.Error())
|
2015-09-24 18:06:11 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer p.Stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special handling for plugins that have their own collection interval
|
2015-10-16 22:13:32 +00:00
|
|
|
// configured. Default intervals are handled below with gatherParallel
|
2015-11-24 21:22:11 +00:00
|
|
|
if plugin.Config.Interval != 0 {
|
2015-05-20 05:19:32 +00:00
|
|
|
wg.Add(1)
|
2015-11-24 21:22:11 +00:00
|
|
|
go func(plugin *config.RunningPlugin) {
|
2015-05-20 05:19:32 +00:00
|
|
|
defer wg.Done()
|
2015-10-16 22:13:32 +00:00
|
|
|
if err := a.gatherSeparate(shutdown, plugin, pointChan); err != nil {
|
2015-08-26 23:43:09 +00:00
|
|
|
log.Printf(err.Error())
|
2015-08-22 20:03:30 +00:00
|
|
|
}
|
2015-05-20 05:19:32 +00:00
|
|
|
}(plugin)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
defer wg.Wait()
|
|
|
|
|
2015-04-01 16:34:32 +00:00
|
|
|
for {
|
2015-10-16 22:13:32 +00:00
|
|
|
if err := a.gatherParallel(pointChan); err != nil {
|
2015-08-26 23:43:09 +00:00
|
|
|
log.Printf(err.Error())
|
2015-04-01 16:34:32 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
select {
|
|
|
|
case <-shutdown:
|
2015-04-07 16:23:58 +00:00
|
|
|
return nil
|
2015-04-01 16:34:32 +00:00
|
|
|
case <-ticker.C:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|