434 lines
10 KiB
Go
434 lines
10 KiB
Go
package agent
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"os"
|
|
"runtime"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/influxdata/telegraf"
|
|
"github.com/influxdata/telegraf/internal"
|
|
"github.com/influxdata/telegraf/internal/config"
|
|
"github.com/influxdata/telegraf/internal/models"
|
|
"github.com/influxdata/telegraf/selfstat"
|
|
)
|
|
|
|
// Agent runs telegraf and collects data based on the given config
|
|
type Agent struct {
|
|
Config *config.Config
|
|
}
|
|
|
|
// NewAgent returns an Agent struct based off the given Config
|
|
func NewAgent(config *config.Config) (*Agent, error) {
|
|
a := &Agent{
|
|
Config: config,
|
|
}
|
|
|
|
if !a.Config.Agent.OmitHostname {
|
|
if a.Config.Agent.Hostname == "" {
|
|
hostname, err := os.Hostname()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
a.Config.Agent.Hostname = hostname
|
|
}
|
|
|
|
config.Tags["host"] = a.Config.Agent.Hostname
|
|
}
|
|
|
|
return a, nil
|
|
}
|
|
|
|
// Connect connects to all configured outputs
|
|
func (a *Agent) Connect() error {
|
|
for _, o := range a.Config.Outputs {
|
|
switch ot := o.Output.(type) {
|
|
case telegraf.ServiceOutput:
|
|
if err := ot.Start(); err != nil {
|
|
log.Printf("E! Service for output %s failed to start, exiting\n%s\n",
|
|
o.Name, err.Error())
|
|
return err
|
|
}
|
|
}
|
|
|
|
log.Printf("D! Attempting connection to output: %s\n", o.Name)
|
|
err := o.Output.Connect()
|
|
if err != nil {
|
|
log.Printf("E! Failed to connect to output %s, retrying in 15s, "+
|
|
"error was '%s' \n", o.Name, err)
|
|
time.Sleep(15 * time.Second)
|
|
err = o.Output.Connect()
|
|
if err != nil {
|
|
return err
|
|
}
|
|
}
|
|
log.Printf("D! Successfully connected to output: %s\n", o.Name)
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Close closes the connection to all configured outputs
|
|
func (a *Agent) Close() error {
|
|
var err error
|
|
for _, o := range a.Config.Outputs {
|
|
err = o.Output.Close()
|
|
switch ot := o.Output.(type) {
|
|
case telegraf.ServiceOutput:
|
|
ot.Stop()
|
|
}
|
|
}
|
|
return err
|
|
}
|
|
|
|
func panicRecover(input *models.RunningInput) {
|
|
if err := recover(); err != nil {
|
|
trace := make([]byte, 2048)
|
|
runtime.Stack(trace, true)
|
|
log.Printf("E! FATAL: Input [%s] panicked: %s, Stack:\n%s\n",
|
|
input.Name(), err, trace)
|
|
log.Println("E! PLEASE REPORT THIS PANIC ON GITHUB with " +
|
|
"stack trace, configuration, and OS information: " +
|
|
"https://github.com/influxdata/telegraf/issues/new")
|
|
}
|
|
}
|
|
|
|
// gatherer runs the inputs that have been configured with their own
|
|
// reporting interval.
|
|
func (a *Agent) gatherer(
|
|
shutdown chan struct{},
|
|
input *models.RunningInput,
|
|
interval time.Duration,
|
|
metricC chan telegraf.Metric,
|
|
) {
|
|
defer panicRecover(input)
|
|
|
|
GatherTime := selfstat.RegisterTiming("gather",
|
|
"gather_time_ns",
|
|
map[string]string{"input": input.Config.Name},
|
|
)
|
|
|
|
acc := NewAccumulator(input, metricC)
|
|
acc.SetPrecision(a.Config.Agent.Precision.Duration,
|
|
a.Config.Agent.Interval.Duration)
|
|
|
|
ticker := time.NewTicker(interval)
|
|
defer ticker.Stop()
|
|
|
|
for {
|
|
internal.RandomSleep(a.Config.Agent.CollectionJitter.Duration, shutdown)
|
|
|
|
start := time.Now()
|
|
gatherWithTimeout(shutdown, input, acc, interval)
|
|
elapsed := time.Since(start)
|
|
|
|
GatherTime.Incr(elapsed.Nanoseconds())
|
|
|
|
select {
|
|
case <-shutdown:
|
|
return
|
|
case <-ticker.C:
|
|
continue
|
|
}
|
|
}
|
|
}
|
|
|
|
// gatherWithTimeout gathers from the given input, with the given timeout.
|
|
// when the given timeout is reached, gatherWithTimeout logs an error message
|
|
// but continues waiting for it to return. This is to avoid leaving behind
|
|
// hung processes, and to prevent re-calling the same hung process over and
|
|
// over.
|
|
func gatherWithTimeout(
|
|
shutdown chan struct{},
|
|
input *models.RunningInput,
|
|
acc telegraf.Accumulator,
|
|
timeout time.Duration,
|
|
) {
|
|
ticker := time.NewTicker(timeout)
|
|
defer ticker.Stop()
|
|
done := make(chan error)
|
|
go func() {
|
|
done <- input.Input.Gather(acc)
|
|
}()
|
|
|
|
for {
|
|
select {
|
|
case err := <-done:
|
|
if err != nil {
|
|
acc.AddError(err)
|
|
}
|
|
return
|
|
case <-ticker.C:
|
|
err := fmt.Errorf("took longer to collect than collection interval (%s)",
|
|
timeout)
|
|
acc.AddError(err)
|
|
continue
|
|
case <-shutdown:
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
// Test verifies that we can 'Gather' from all inputs with their configured
|
|
// Config struct
|
|
func (a *Agent) Test() error {
|
|
shutdown := make(chan struct{})
|
|
defer close(shutdown)
|
|
metricC := make(chan telegraf.Metric)
|
|
|
|
// dummy receiver for the point channel
|
|
go func() {
|
|
for {
|
|
select {
|
|
case <-metricC:
|
|
// do nothing
|
|
case <-shutdown:
|
|
return
|
|
}
|
|
}
|
|
}()
|
|
|
|
for _, input := range a.Config.Inputs {
|
|
if _, ok := input.Input.(telegraf.ServiceInput); ok {
|
|
fmt.Printf("\nWARNING: skipping plugin [[%s]]: service inputs not supported in --test mode\n",
|
|
input.Name())
|
|
continue
|
|
}
|
|
|
|
acc := NewAccumulator(input, metricC)
|
|
acc.SetPrecision(a.Config.Agent.Precision.Duration,
|
|
a.Config.Agent.Interval.Duration)
|
|
input.SetTrace(true)
|
|
input.SetDefaultTags(a.Config.Tags)
|
|
|
|
if err := input.Input.Gather(acc); err != nil {
|
|
return err
|
|
}
|
|
|
|
// Special instructions for some inputs. cpu, for example, needs to be
|
|
// run twice in order to return cpu usage percentages.
|
|
switch input.Name() {
|
|
case "inputs.cpu", "inputs.mongodb", "inputs.procstat":
|
|
time.Sleep(500 * time.Millisecond)
|
|
if err := input.Input.Gather(acc); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// flush writes a list of metrics to all configured outputs
|
|
func (a *Agent) flush() {
|
|
var wg sync.WaitGroup
|
|
|
|
wg.Add(len(a.Config.Outputs))
|
|
for _, o := range a.Config.Outputs {
|
|
go func(output *models.RunningOutput) {
|
|
defer wg.Done()
|
|
err := output.Write()
|
|
if err != nil {
|
|
log.Printf("E! Error writing to output [%s]: %s\n",
|
|
output.Name, err.Error())
|
|
}
|
|
}(o)
|
|
}
|
|
|
|
wg.Wait()
|
|
}
|
|
|
|
// flusher monitors the metrics input channel and flushes on the minimum interval
|
|
func (a *Agent) flusher(
|
|
shutdown chan struct{},
|
|
metricC chan telegraf.Metric,
|
|
aggMetricC chan telegraf.Metric,
|
|
outMetricC chan telegraf.Metric,
|
|
) error {
|
|
var wg sync.WaitGroup
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
for {
|
|
select {
|
|
case <-shutdown:
|
|
if len(outMetricC) > 0 {
|
|
// keep going until channel is empty
|
|
continue
|
|
}
|
|
return
|
|
case metric := <-outMetricC:
|
|
for i, o := range a.Config.Outputs {
|
|
if i == len(a.Config.Outputs)-1 {
|
|
o.AddMetric(metric)
|
|
} else {
|
|
o.AddMetric(metric.Copy())
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
for metric := range aggMetricC {
|
|
// Apply Processors
|
|
metrics := []telegraf.Metric{metric}
|
|
for _, processor := range a.Config.Processors {
|
|
metrics = processor.Apply(metrics...)
|
|
}
|
|
outMetricC <- metric
|
|
}
|
|
}()
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
for {
|
|
select {
|
|
case <-shutdown:
|
|
if len(metricC) > 0 {
|
|
// keep going until channel is empty
|
|
continue
|
|
}
|
|
close(aggMetricC)
|
|
return
|
|
case metric := <-metricC:
|
|
// Apply Processors
|
|
metrics := []telegraf.Metric{metric}
|
|
for _, processor := range a.Config.Processors {
|
|
metrics = processor.Apply(metrics...)
|
|
}
|
|
|
|
for _, metric := range metrics {
|
|
// Apply Aggregators
|
|
var dropOriginal bool
|
|
for _, agg := range a.Config.Aggregators {
|
|
if ok := agg.Add(metric.Copy()); ok {
|
|
dropOriginal = true
|
|
}
|
|
}
|
|
|
|
// Forward metric to Outputs
|
|
if !dropOriginal {
|
|
outMetricC <- metric
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}()
|
|
|
|
ticker := time.NewTicker(a.Config.Agent.FlushInterval.Duration)
|
|
semaphore := make(chan struct{}, 1)
|
|
for {
|
|
select {
|
|
case <-shutdown:
|
|
log.Println("I! Hang on, flushing any cached metrics before shutdown")
|
|
// wait for outMetricC to get flushed before flushing outputs
|
|
wg.Wait()
|
|
a.flush()
|
|
return nil
|
|
case <-ticker.C:
|
|
go func() {
|
|
select {
|
|
case semaphore <- struct{}{}:
|
|
internal.RandomSleep(a.Config.Agent.FlushJitter.Duration, shutdown)
|
|
a.flush()
|
|
<-semaphore
|
|
default:
|
|
// skipping this flush because one is already happening
|
|
log.Println("W! Skipping a scheduled flush because there is" +
|
|
" already a flush ongoing.")
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
}
|
|
|
|
// Run runs the agent daemon, gathering every Interval
|
|
func (a *Agent) Run(shutdown chan struct{}) error {
|
|
var wg sync.WaitGroup
|
|
|
|
log.Printf("I! Agent Config: Interval:%s, Quiet:%#v, Hostname:%#v, "+
|
|
"Flush Interval:%s \n",
|
|
a.Config.Agent.Interval.Duration, a.Config.Agent.Quiet,
|
|
a.Config.Agent.Hostname, a.Config.Agent.FlushInterval.Duration)
|
|
|
|
// Channel shared between all input threads for accumulating metrics
|
|
metricC := make(chan telegraf.Metric, 100)
|
|
|
|
// Channel for metrics ready to be output
|
|
outMetricC := make(chan telegraf.Metric, 100)
|
|
|
|
// Channel for aggregated metrics
|
|
aggMetricC := make(chan telegraf.Metric, 100)
|
|
|
|
// Round collection to nearest interval by sleeping
|
|
if a.Config.Agent.RoundInterval {
|
|
i := int64(a.Config.Agent.Interval.Duration)
|
|
time.Sleep(time.Duration(i - (time.Now().UnixNano() % i)))
|
|
}
|
|
|
|
wg.Add(1)
|
|
go func() {
|
|
defer wg.Done()
|
|
if err := a.flusher(shutdown, metricC, aggMetricC, outMetricC); err != nil {
|
|
log.Printf("E! Flusher routine failed, exiting: %s\n", err.Error())
|
|
close(shutdown)
|
|
}
|
|
}()
|
|
|
|
wg.Add(len(a.Config.Aggregators))
|
|
for _, aggregator := range a.Config.Aggregators {
|
|
go func(agg *models.RunningAggregator) {
|
|
defer wg.Done()
|
|
acc := NewAccumulator(agg, aggMetricC)
|
|
acc.SetPrecision(a.Config.Agent.Precision.Duration,
|
|
a.Config.Agent.Interval.Duration)
|
|
agg.Run(acc, shutdown)
|
|
}(aggregator)
|
|
}
|
|
|
|
// Service inputs may immediately add metrics, if metrics are added before
|
|
// the aggregator starts they will be dropped. Generally this occurs
|
|
// only during testing but it is an outstanding issue.
|
|
//
|
|
// https://github.com/influxdata/telegraf/issues/4394
|
|
for _, input := range a.Config.Inputs {
|
|
input.SetDefaultTags(a.Config.Tags)
|
|
switch p := input.Input.(type) {
|
|
case telegraf.ServiceInput:
|
|
acc := NewAccumulator(input, metricC)
|
|
// Service input plugins should set their own precision of their
|
|
// metrics.
|
|
acc.SetPrecision(time.Nanosecond, 0)
|
|
if err := p.Start(acc); err != nil {
|
|
log.Printf("E! Service for input %s failed to start, exiting\n%s\n",
|
|
input.Name(), err.Error())
|
|
return err
|
|
}
|
|
defer p.Stop()
|
|
}
|
|
}
|
|
|
|
wg.Add(len(a.Config.Inputs))
|
|
for _, input := range a.Config.Inputs {
|
|
interval := a.Config.Agent.Interval.Duration
|
|
// overwrite global interval if this plugin has it's own.
|
|
if input.Config.Interval != 0 {
|
|
interval = input.Config.Interval
|
|
}
|
|
go func(in *models.RunningInput, interv time.Duration) {
|
|
defer wg.Done()
|
|
a.gatherer(shutdown, in, interv, metricC)
|
|
}(input, interval)
|
|
}
|
|
|
|
wg.Wait()
|
|
a.Close()
|
|
return nil
|
|
}
|