Skip to content
Snippets Groups Projects
  • Cameron Sparr's avatar
    d7efb7a7
    Add precision rounding to accumulator · d7efb7a7
    Cameron Sparr authored
    Adding precision rounding to the accumulator. This means that now every
    input metric will get rounded at collection, rather than at write (and
    only for the influxdb output).
    
    This feature is disabled for service inputs, because service inputs
    should be in control of their own timestamps & precisions.
    d7efb7a7
    History
    Add precision rounding to accumulator
    Cameron Sparr authored
    Adding precision rounding to the accumulator. This means that now every
    input metric will get rounded at collection, rather than at write (and
    only for the influxdb output).
    
    This feature is disabled for service inputs, because service inputs
    should be in control of their own timestamps & precisions.
accumulator.go 526 B
package telegraf

import "time"

type Accumulator interface {
	// Create a point with a value, decorating it with tags
	// NOTE: tags is expected to be owned by the caller, don't mutate
	// it after passing to Add.
	Add(measurement string,
		value interface{},
		tags map[string]string,
		t ...time.Time)

	AddFields(measurement string,
		fields map[string]interface{},
		tags map[string]string,
		t ...time.Time)

	Debug() bool
	SetDebug(enabled bool)

	SetPrecision(precision, interval time.Duration)

	DisablePrecision()
}