// Example of adding a metric acc.Add(fields, tags, time.Now(), "measurement")
// Example of pushing accumulated metrics to output plugin err = acc.Push()
// Example of getting accumulated metrics metrics := acc.Metrics()This package library is often used by telegraf input and output plugins to collect and send data to InfluxDB or other data repositories. Overall, the Accumulator provided by this package is an essential component in telegraf data collection and aggregation.