2018-11-05 21:34:28 +00:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
"github.com/influxdata/telegraf/selfstat"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
AgentMetricsWritten = selfstat.Register("agent", "metrics_written", map[string]string{})
|
|
|
|
AgentMetricsDropped = selfstat.Register("agent", "metrics_dropped", map[string]string{})
|
|
|
|
)
|
|
|
|
|
|
|
|
// Buffer stores metrics in a circular buffer.
|
|
|
|
type Buffer struct {
|
|
|
|
sync.Mutex
|
|
|
|
buf []telegraf.Metric
|
|
|
|
first int // index of the first/oldest metric
|
|
|
|
last int // one after the index of the last/newest metric
|
|
|
|
size int // number of metrics currently in the buffer
|
|
|
|
cap int // the capacity of the buffer
|
|
|
|
|
|
|
|
batchFirst int // index of the first metric in the batch
|
2019-01-15 19:48:52 +00:00
|
|
|
batchSize int // number of metrics currently in the batch
|
2018-11-05 21:34:28 +00:00
|
|
|
|
|
|
|
MetricsAdded selfstat.Stat
|
|
|
|
MetricsWritten selfstat.Stat
|
|
|
|
MetricsDropped selfstat.Stat
|
2019-01-22 21:43:51 +00:00
|
|
|
BufferSize selfstat.Stat
|
|
|
|
BufferLimit selfstat.Stat
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewBuffer returns a new empty Buffer with the given capacity.
|
2019-08-22 01:02:51 +00:00
|
|
|
func NewBuffer(name string, alias string, capacity int) *Buffer {
|
2018-11-05 21:34:28 +00:00
|
|
|
b := &Buffer{
|
|
|
|
buf: make([]telegraf.Metric, capacity),
|
|
|
|
first: 0,
|
|
|
|
last: 0,
|
|
|
|
size: 0,
|
|
|
|
cap: capacity,
|
|
|
|
|
|
|
|
MetricsAdded: selfstat.Register(
|
|
|
|
"write",
|
|
|
|
"metrics_added",
|
2019-08-22 01:02:51 +00:00
|
|
|
map[string]string{"output": name, "alias": alias},
|
2018-11-05 21:34:28 +00:00
|
|
|
),
|
|
|
|
MetricsWritten: selfstat.Register(
|
|
|
|
"write",
|
|
|
|
"metrics_written",
|
2019-08-22 01:02:51 +00:00
|
|
|
map[string]string{"output": name, "alias": alias},
|
2018-11-05 21:34:28 +00:00
|
|
|
),
|
|
|
|
MetricsDropped: selfstat.Register(
|
|
|
|
"write",
|
|
|
|
"metrics_dropped",
|
2019-08-22 01:02:51 +00:00
|
|
|
map[string]string{"output": name, "alias": alias},
|
2018-11-05 21:34:28 +00:00
|
|
|
),
|
2019-01-22 21:43:51 +00:00
|
|
|
BufferSize: selfstat.Register(
|
|
|
|
"write",
|
|
|
|
"buffer_size",
|
2019-08-22 01:02:51 +00:00
|
|
|
map[string]string{"output": name, "alias": alias},
|
2019-01-22 21:43:51 +00:00
|
|
|
),
|
|
|
|
BufferLimit: selfstat.Register(
|
|
|
|
"write",
|
|
|
|
"buffer_limit",
|
2019-08-22 01:02:51 +00:00
|
|
|
map[string]string{"output": name, "alias": alias},
|
2019-01-22 21:43:51 +00:00
|
|
|
),
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
2019-01-22 21:43:51 +00:00
|
|
|
b.BufferSize.Set(int64(0))
|
|
|
|
b.BufferLimit.Set(int64(capacity))
|
2018-11-05 21:34:28 +00:00
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
|
|
|
// Len returns the number of metrics currently in the buffer.
|
|
|
|
func (b *Buffer) Len() int {
|
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
|
|
|
|
2019-01-22 21:43:51 +00:00
|
|
|
return b.length()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) length() int {
|
|
|
|
return min(b.size+b.batchSize, b.cap)
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) metricAdded() {
|
|
|
|
b.MetricsAdded.Incr(1)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) metricWritten(metric telegraf.Metric) {
|
|
|
|
AgentMetricsWritten.Incr(1)
|
|
|
|
b.MetricsWritten.Incr(1)
|
|
|
|
metric.Accept()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Buffer) metricDropped(metric telegraf.Metric) {
|
|
|
|
AgentMetricsDropped.Incr(1)
|
|
|
|
b.MetricsDropped.Incr(1)
|
|
|
|
metric.Reject()
|
|
|
|
}
|
|
|
|
|
2019-06-05 19:34:45 +00:00
|
|
|
func (b *Buffer) add(m telegraf.Metric) int {
|
|
|
|
dropped := 0
|
2018-11-05 21:34:28 +00:00
|
|
|
// Check if Buffer is full
|
|
|
|
if b.size == b.cap {
|
2019-01-15 19:48:52 +00:00
|
|
|
b.metricDropped(b.buf[b.last])
|
2019-06-05 19:34:45 +00:00
|
|
|
dropped++
|
2019-01-15 19:48:52 +00:00
|
|
|
|
|
|
|
if b.last == b.batchFirst && b.batchSize > 0 {
|
2018-11-05 21:34:28 +00:00
|
|
|
b.batchSize--
|
2019-01-15 19:48:52 +00:00
|
|
|
b.batchFirst = b.next(b.batchFirst)
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.metricAdded()
|
|
|
|
|
|
|
|
b.buf[b.last] = m
|
2019-01-15 19:48:52 +00:00
|
|
|
b.last = b.next(b.last)
|
2018-11-05 21:34:28 +00:00
|
|
|
|
|
|
|
if b.size == b.cap {
|
2019-01-15 19:48:52 +00:00
|
|
|
b.first = b.next(b.first)
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.size = min(b.size+1, b.cap)
|
2019-06-05 19:34:45 +00:00
|
|
|
return dropped
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
2019-06-05 19:34:45 +00:00
|
|
|
// Add adds metrics to the buffer and returns number of dropped metrics.
|
|
|
|
func (b *Buffer) Add(metrics ...telegraf.Metric) int {
|
2018-11-05 21:34:28 +00:00
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
|
|
|
|
2019-06-05 19:34:45 +00:00
|
|
|
dropped := 0
|
2018-11-05 21:34:28 +00:00
|
|
|
for i := range metrics {
|
2019-06-05 19:34:45 +00:00
|
|
|
if n := b.add(metrics[i]); n != 0 {
|
|
|
|
dropped += n
|
|
|
|
}
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
2019-01-22 21:43:51 +00:00
|
|
|
|
|
|
|
b.BufferSize.Set(int64(b.length()))
|
2019-06-05 19:34:45 +00:00
|
|
|
return dropped
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Batch returns a slice containing up to batchSize of the most recently added
|
2019-01-15 19:48:52 +00:00
|
|
|
// metrics. Metrics are ordered from newest to oldest in the batch. The
|
|
|
|
// batch must not be modified by the client.
|
2018-11-05 21:34:28 +00:00
|
|
|
func (b *Buffer) Batch(batchSize int) []telegraf.Metric {
|
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
|
|
|
|
|
|
|
outLen := min(b.size, batchSize)
|
|
|
|
out := make([]telegraf.Metric, outLen)
|
|
|
|
if outLen == 0 {
|
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
b.batchFirst = b.cap + b.last - outLen
|
|
|
|
b.batchFirst %= b.cap
|
2018-11-05 21:34:28 +00:00
|
|
|
b.batchSize = outLen
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
batchIndex := b.batchFirst
|
|
|
|
for i := range out {
|
|
|
|
out[len(out)-1-i] = b.buf[batchIndex]
|
|
|
|
b.buf[batchIndex] = nil
|
|
|
|
batchIndex = b.next(batchIndex)
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
2019-01-15 19:48:52 +00:00
|
|
|
|
|
|
|
b.last = b.batchFirst
|
|
|
|
b.size -= outLen
|
2018-11-05 21:34:28 +00:00
|
|
|
return out
|
|
|
|
}
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
// Accept marks the batch, acquired from Batch(), as successfully written.
|
2018-11-05 21:34:28 +00:00
|
|
|
func (b *Buffer) Accept(batch []telegraf.Metric) {
|
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
|
|
|
|
|
|
|
for _, m := range batch {
|
|
|
|
b.metricWritten(m)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.resetBatch()
|
2019-01-22 21:43:51 +00:00
|
|
|
b.BufferSize.Set(int64(b.length()))
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
// Reject returns the batch, acquired from Batch(), to the buffer and marks it
|
|
|
|
// as unsent.
|
2018-11-05 21:34:28 +00:00
|
|
|
func (b *Buffer) Reject(batch []telegraf.Metric) {
|
|
|
|
b.Lock()
|
|
|
|
defer b.Unlock()
|
|
|
|
|
2019-03-04 20:36:19 +00:00
|
|
|
if len(batch) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
older := b.dist(b.first, b.batchFirst)
|
|
|
|
free := b.cap - b.size
|
|
|
|
restore := min(len(batch), free+older)
|
|
|
|
|
|
|
|
// Rotate newer metrics forward the number of metrics that we can restore.
|
|
|
|
rb := b.batchFirst
|
|
|
|
rp := b.last
|
|
|
|
re := b.nextby(rp, restore)
|
|
|
|
b.last = re
|
2019-03-04 20:36:19 +00:00
|
|
|
|
|
|
|
for rb != rp && rp != re {
|
2019-01-15 19:48:52 +00:00
|
|
|
rp = b.prev(rp)
|
|
|
|
re = b.prev(re)
|
|
|
|
|
|
|
|
if b.buf[re] != nil {
|
|
|
|
b.metricDropped(b.buf[re])
|
2019-01-22 21:43:51 +00:00
|
|
|
b.first = b.next(b.first)
|
2019-01-15 19:48:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
b.buf[re] = b.buf[rp]
|
|
|
|
b.buf[rp] = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Copy metrics from the batch back into the buffer; recall that the
|
|
|
|
// batch is in reverse order compared to b.buf
|
|
|
|
for i := range batch {
|
|
|
|
if i < restore {
|
|
|
|
re = b.prev(re)
|
|
|
|
b.buf[re] = batch[i]
|
2019-01-22 21:43:51 +00:00
|
|
|
b.size = min(b.size+1, b.cap)
|
2019-01-15 19:48:52 +00:00
|
|
|
} else {
|
|
|
|
b.metricDropped(batch[i])
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.resetBatch()
|
2019-01-22 21:43:51 +00:00
|
|
|
b.BufferSize.Set(int64(b.length()))
|
2018-11-05 21:34:28 +00:00
|
|
|
}
|
|
|
|
|
2019-01-15 19:48:52 +00:00
|
|
|
// dist returns the distance between two indexes. Because this data structure
|
|
|
|
// uses a half open range the arguments must both either left side or right
|
|
|
|
// side pairs.
|
|
|
|
func (b *Buffer) dist(begin, end int) int {
|
|
|
|
if begin <= end {
|
|
|
|
return end - begin
|
|
|
|
} else {
|
2019-01-22 21:43:51 +00:00
|
|
|
return b.cap - begin + end
|
2019-01-15 19:48:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// next returns the next index with wrapping.
|
|
|
|
func (b *Buffer) next(index int) int {
|
|
|
|
index++
|
|
|
|
if index == b.cap {
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
return index
|
|
|
|
}
|
|
|
|
|
|
|
|
// next returns the index that is count newer with wrapping.
|
|
|
|
func (b *Buffer) nextby(index, count int) int {
|
|
|
|
index += count
|
|
|
|
index %= b.cap
|
|
|
|
return index
|
|
|
|
}
|
|
|
|
|
|
|
|
// next returns the prev index with wrapping.
|
|
|
|
func (b *Buffer) prev(index int) int {
|
|
|
|
index--
|
|
|
|
if index < 0 {
|
|
|
|
return b.cap - 1
|
|
|
|
}
|
|
|
|
return index
|
|
|
|
}
|
|
|
|
|
2018-11-05 21:34:28 +00:00
|
|
|
func (b *Buffer) resetBatch() {
|
|
|
|
b.batchFirst = 0
|
|
|
|
b.batchSize = 0
|
|
|
|
}
|
|
|
|
|
|
|
|
func min(a, b int) int {
|
|
|
|
if b < a {
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
return a
|
|
|
|
}
|