2019-11-26 23:46:31 +00:00
|
|
|
package prometheus
|
|
|
|
|
|
|
|
import (
|
|
|
|
"hash/fnv"
|
|
|
|
"sort"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gogo/protobuf/proto"
|
|
|
|
"github.com/influxdata/telegraf"
|
|
|
|
dto "github.com/prometheus/client_model/go"
|
|
|
|
)
|
|
|
|
|
|
|
|
const helpString = "Telegraf collected metric"
|
|
|
|
|
2020-02-24 23:53:16 +00:00
|
|
|
type TimeFunc func() time.Time
|
|
|
|
|
2019-11-26 23:46:31 +00:00
|
|
|
type MetricFamily struct {
|
|
|
|
Name string
|
|
|
|
Type telegraf.ValueType
|
|
|
|
}
|
|
|
|
|
|
|
|
type Metric struct {
|
|
|
|
Labels []LabelPair
|
|
|
|
Time time.Time
|
2020-02-24 23:53:16 +00:00
|
|
|
AddTime time.Time
|
2019-11-26 23:46:31 +00:00
|
|
|
Scaler *Scaler
|
|
|
|
Histogram *Histogram
|
|
|
|
Summary *Summary
|
|
|
|
}
|
|
|
|
|
|
|
|
type LabelPair struct {
|
|
|
|
Name string
|
|
|
|
Value string
|
|
|
|
}
|
|
|
|
|
|
|
|
type Scaler struct {
|
|
|
|
Value float64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Bucket struct {
|
|
|
|
Bound float64
|
|
|
|
Count uint64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Quantile struct {
|
|
|
|
Quantile float64
|
|
|
|
Value float64
|
|
|
|
}
|
|
|
|
|
|
|
|
type Histogram struct {
|
|
|
|
Buckets []Bucket
|
|
|
|
Count uint64
|
|
|
|
Sum float64
|
|
|
|
}
|
|
|
|
|
2019-12-04 21:41:33 +00:00
|
|
|
func (h *Histogram) merge(b Bucket) {
|
|
|
|
for i := range h.Buckets {
|
|
|
|
if h.Buckets[i].Bound == b.Bound {
|
|
|
|
h.Buckets[i].Count = b.Count
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
h.Buckets = append(h.Buckets, b)
|
|
|
|
}
|
|
|
|
|
2019-11-26 23:46:31 +00:00
|
|
|
type Summary struct {
|
|
|
|
Quantiles []Quantile
|
|
|
|
Count uint64
|
|
|
|
Sum float64
|
|
|
|
}
|
|
|
|
|
2019-12-04 21:41:33 +00:00
|
|
|
func (s *Summary) merge(q Quantile) {
|
|
|
|
for i := range s.Quantiles {
|
|
|
|
if s.Quantiles[i].Quantile == q.Quantile {
|
|
|
|
s.Quantiles[i].Value = q.Value
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
s.Quantiles = append(s.Quantiles, q)
|
|
|
|
}
|
|
|
|
|
2019-11-26 23:46:31 +00:00
|
|
|
type MetricKey uint64
|
|
|
|
|
|
|
|
func MakeMetricKey(labels []LabelPair) MetricKey {
|
|
|
|
h := fnv.New64a()
|
|
|
|
for _, label := range labels {
|
|
|
|
h.Write([]byte(label.Name))
|
|
|
|
h.Write([]byte("\x00"))
|
|
|
|
h.Write([]byte(label.Value))
|
|
|
|
h.Write([]byte("\x00"))
|
|
|
|
}
|
|
|
|
return MetricKey(h.Sum64())
|
|
|
|
}
|
|
|
|
|
|
|
|
type Entry struct {
|
|
|
|
Family MetricFamily
|
|
|
|
Metrics map[MetricKey]*Metric
|
|
|
|
}
|
|
|
|
|
|
|
|
type Collection struct {
|
|
|
|
Entries map[MetricFamily]Entry
|
2020-02-24 23:53:16 +00:00
|
|
|
config FormatConfig
|
2019-11-26 23:46:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCollection(config FormatConfig) *Collection {
|
|
|
|
cache := &Collection{
|
|
|
|
Entries: make(map[MetricFamily]Entry),
|
2020-02-24 23:53:16 +00:00
|
|
|
config: config,
|
2019-11-26 23:46:31 +00:00
|
|
|
}
|
|
|
|
return cache
|
|
|
|
}
|
|
|
|
|
|
|
|
func hasLabel(name string, labels []LabelPair) bool {
|
|
|
|
for _, label := range labels {
|
|
|
|
if name == label.Name {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) createLabels(metric telegraf.Metric) []LabelPair {
|
|
|
|
labels := make([]LabelPair, 0, len(metric.TagList()))
|
|
|
|
for _, tag := range metric.TagList() {
|
|
|
|
// Ignore special tags for histogram and summary types.
|
|
|
|
switch metric.Type() {
|
|
|
|
case telegraf.Histogram:
|
|
|
|
if tag.Key == "le" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
case telegraf.Summary:
|
|
|
|
if tag.Key == "quantile" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-12-03 21:34:00 +00:00
|
|
|
name, ok := SanitizeLabelName(tag.Key)
|
2019-11-26 23:46:31 +00:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
labels = append(labels, LabelPair{Name: name, Value: tag.Value})
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.config.StringHandling != StringAsLabel {
|
|
|
|
return labels
|
|
|
|
}
|
|
|
|
|
|
|
|
addedFieldLabel := false
|
|
|
|
for _, field := range metric.FieldList() {
|
|
|
|
value, ok := field.Value.(string)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-12-03 21:34:00 +00:00
|
|
|
name, ok := SanitizeLabelName(field.Key)
|
2019-11-26 23:46:31 +00:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there is a tag with the same name as the string field, discard
|
|
|
|
// the field and use the tag instead.
|
|
|
|
if hasLabel(name, labels) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
labels = append(labels, LabelPair{Name: name, Value: value})
|
|
|
|
addedFieldLabel = true
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if addedFieldLabel {
|
|
|
|
sort.Slice(labels, func(i, j int) bool {
|
|
|
|
return labels[i].Name < labels[j].Name
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return labels
|
|
|
|
}
|
|
|
|
|
2020-02-24 23:53:16 +00:00
|
|
|
func (c *Collection) Add(metric telegraf.Metric, now time.Time) {
|
2019-11-26 23:46:31 +00:00
|
|
|
labels := c.createLabels(metric)
|
|
|
|
for _, field := range metric.FieldList() {
|
|
|
|
metricName := MetricName(metric.Name(), field.Key, metric.Type())
|
2019-12-03 21:34:00 +00:00
|
|
|
metricName, ok := SanitizeMetricName(metricName)
|
2019-11-26 23:46:31 +00:00
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
family := MetricFamily{
|
|
|
|
Name: metricName,
|
|
|
|
Type: metric.Type(),
|
|
|
|
}
|
|
|
|
|
|
|
|
entry, ok := c.Entries[family]
|
|
|
|
if !ok {
|
|
|
|
entry = Entry{
|
|
|
|
Family: family,
|
|
|
|
Metrics: make(map[MetricKey]*Metric),
|
|
|
|
}
|
|
|
|
c.Entries[family] = entry
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
metricKey := MakeMetricKey(labels)
|
|
|
|
|
|
|
|
m, ok := entry.Metrics[metricKey]
|
|
|
|
if ok {
|
|
|
|
// A batch of metrics can contain multiple values for a single
|
|
|
|
// Prometheus sample. If this metric is older than the existing
|
|
|
|
// sample then we can skip over it.
|
|
|
|
if metric.Time().Before(m.Time) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
switch metric.Type() {
|
|
|
|
case telegraf.Counter:
|
|
|
|
fallthrough
|
|
|
|
case telegraf.Gauge:
|
|
|
|
fallthrough
|
|
|
|
case telegraf.Untyped:
|
|
|
|
value, ok := SampleValue(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m = &Metric{
|
2020-02-24 23:53:16 +00:00
|
|
|
Labels: labels,
|
|
|
|
Time: metric.Time(),
|
|
|
|
AddTime: now,
|
|
|
|
Scaler: &Scaler{Value: value},
|
2019-11-26 23:46:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
entry.Metrics[metricKey] = m
|
|
|
|
case telegraf.Histogram:
|
|
|
|
if m == nil {
|
|
|
|
m = &Metric{
|
|
|
|
Labels: labels,
|
|
|
|
Time: metric.Time(),
|
2020-02-24 23:53:16 +00:00
|
|
|
AddTime: now,
|
2019-11-26 23:46:31 +00:00
|
|
|
Histogram: &Histogram{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case strings.HasSuffix(field.Key, "_bucket"):
|
|
|
|
le, ok := metric.GetTag("le")
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
bound, err := strconv.ParseFloat(le, 64)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
count, ok := SampleCount(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-12-04 21:41:33 +00:00
|
|
|
m.Histogram.merge(Bucket{
|
2019-11-26 23:46:31 +00:00
|
|
|
Bound: bound,
|
|
|
|
Count: count,
|
|
|
|
})
|
|
|
|
case strings.HasSuffix(field.Key, "_sum"):
|
|
|
|
sum, ok := SampleSum(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Histogram.Sum = sum
|
|
|
|
case strings.HasSuffix(field.Key, "_count"):
|
|
|
|
count, ok := SampleCount(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Histogram.Count = count
|
|
|
|
default:
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
entry.Metrics[metricKey] = m
|
|
|
|
case telegraf.Summary:
|
|
|
|
if m == nil {
|
|
|
|
m = &Metric{
|
|
|
|
Labels: labels,
|
|
|
|
Time: metric.Time(),
|
2020-02-24 23:53:16 +00:00
|
|
|
AddTime: now,
|
2019-11-26 23:46:31 +00:00
|
|
|
Summary: &Summary{},
|
|
|
|
}
|
|
|
|
}
|
|
|
|
switch {
|
|
|
|
case strings.HasSuffix(field.Key, "_sum"):
|
|
|
|
sum, ok := SampleSum(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Summary.Sum = sum
|
|
|
|
case strings.HasSuffix(field.Key, "_count"):
|
|
|
|
count, ok := SampleCount(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Summary.Count = count
|
|
|
|
default:
|
|
|
|
quantileTag, ok := metric.GetTag("quantile")
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
quantile, err := strconv.ParseFloat(quantileTag, 64)
|
|
|
|
if err != nil {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
value, ok := SampleValue(field.Value)
|
|
|
|
if !ok {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-12-04 21:41:33 +00:00
|
|
|
m.Summary.merge(Quantile{
|
2019-11-26 23:46:31 +00:00
|
|
|
Quantile: quantile,
|
|
|
|
Value: value,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
entry.Metrics[metricKey] = m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) Expire(now time.Time, age time.Duration) {
|
|
|
|
expireTime := now.Add(-age)
|
|
|
|
for _, entry := range c.Entries {
|
|
|
|
for key, metric := range entry.Metrics {
|
2020-02-24 23:53:16 +00:00
|
|
|
if metric.AddTime.Before(expireTime) {
|
2019-11-26 23:46:31 +00:00
|
|
|
delete(entry.Metrics, key)
|
|
|
|
if len(entry.Metrics) == 0 {
|
|
|
|
delete(c.Entries, entry.Family)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) GetEntries(order MetricSortOrder) []Entry {
|
|
|
|
entries := make([]Entry, 0, len(c.Entries))
|
|
|
|
for _, entry := range c.Entries {
|
|
|
|
entries = append(entries, entry)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch order {
|
|
|
|
case SortMetrics:
|
|
|
|
sort.Slice(entries, func(i, j int) bool {
|
|
|
|
lhs := entries[i].Family
|
|
|
|
rhs := entries[j].Family
|
|
|
|
if lhs.Name != rhs.Name {
|
|
|
|
return lhs.Name < rhs.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
return lhs.Type < rhs.Type
|
|
|
|
})
|
|
|
|
}
|
|
|
|
return entries
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) GetMetrics(entry Entry, order MetricSortOrder) []*Metric {
|
|
|
|
metrics := make([]*Metric, 0, len(entry.Metrics))
|
|
|
|
for _, metric := range entry.Metrics {
|
|
|
|
metrics = append(metrics, metric)
|
|
|
|
}
|
|
|
|
|
|
|
|
switch order {
|
|
|
|
case SortMetrics:
|
|
|
|
sort.Slice(metrics, func(i, j int) bool {
|
|
|
|
lhs := metrics[i].Labels
|
|
|
|
rhs := metrics[j].Labels
|
|
|
|
if len(lhs) != len(rhs) {
|
|
|
|
return len(lhs) < len(rhs)
|
|
|
|
}
|
|
|
|
|
|
|
|
for index := range lhs {
|
|
|
|
l := lhs[index]
|
|
|
|
r := rhs[index]
|
|
|
|
|
|
|
|
if l.Name != r.Name {
|
|
|
|
return l.Name < r.Name
|
|
|
|
}
|
|
|
|
|
|
|
|
if l.Value != r.Value {
|
|
|
|
return l.Value < r.Value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
return metrics
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Collection) GetProto() []*dto.MetricFamily {
|
|
|
|
result := make([]*dto.MetricFamily, 0, len(c.Entries))
|
|
|
|
|
|
|
|
for _, entry := range c.GetEntries(c.config.MetricSortOrder) {
|
|
|
|
mf := &dto.MetricFamily{
|
|
|
|
Name: proto.String(entry.Family.Name),
|
|
|
|
Help: proto.String(helpString),
|
|
|
|
Type: MetricType(entry.Family.Type),
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, metric := range c.GetMetrics(entry, c.config.MetricSortOrder) {
|
|
|
|
l := make([]*dto.LabelPair, 0, len(metric.Labels))
|
|
|
|
for _, label := range metric.Labels {
|
|
|
|
l = append(l, &dto.LabelPair{
|
|
|
|
Name: proto.String(label.Name),
|
|
|
|
Value: proto.String(label.Value),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
m := &dto.Metric{
|
|
|
|
Label: l,
|
|
|
|
}
|
|
|
|
|
|
|
|
if c.config.TimestampExport == ExportTimestamp {
|
|
|
|
m.TimestampMs = proto.Int64(metric.Time.UnixNano() / int64(time.Millisecond))
|
|
|
|
}
|
|
|
|
|
|
|
|
switch entry.Family.Type {
|
|
|
|
case telegraf.Gauge:
|
|
|
|
m.Gauge = &dto.Gauge{Value: proto.Float64(metric.Scaler.Value)}
|
|
|
|
case telegraf.Counter:
|
|
|
|
m.Counter = &dto.Counter{Value: proto.Float64(metric.Scaler.Value)}
|
|
|
|
case telegraf.Untyped:
|
|
|
|
m.Untyped = &dto.Untyped{Value: proto.Float64(metric.Scaler.Value)}
|
|
|
|
case telegraf.Histogram:
|
|
|
|
buckets := make([]*dto.Bucket, 0, len(metric.Histogram.Buckets))
|
|
|
|
for _, bucket := range metric.Histogram.Buckets {
|
|
|
|
buckets = append(buckets, &dto.Bucket{
|
|
|
|
UpperBound: proto.Float64(bucket.Bound),
|
|
|
|
CumulativeCount: proto.Uint64(bucket.Count),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(buckets) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Histogram = &dto.Histogram{
|
|
|
|
Bucket: buckets,
|
|
|
|
SampleCount: proto.Uint64(metric.Histogram.Count),
|
|
|
|
SampleSum: proto.Float64(metric.Histogram.Sum),
|
|
|
|
}
|
|
|
|
case telegraf.Summary:
|
|
|
|
quantiles := make([]*dto.Quantile, 0, len(metric.Summary.Quantiles))
|
|
|
|
for _, quantile := range metric.Summary.Quantiles {
|
|
|
|
quantiles = append(quantiles, &dto.Quantile{
|
|
|
|
Quantile: proto.Float64(quantile.Quantile),
|
|
|
|
Value: proto.Float64(quantile.Value),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(quantiles) == 0 {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
m.Summary = &dto.Summary{
|
|
|
|
Quantile: quantiles,
|
|
|
|
SampleCount: proto.Uint64(metric.Summary.Count),
|
|
|
|
SampleSum: proto.Float64(metric.Summary.Sum),
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
panic("unknown telegraf.ValueType")
|
|
|
|
}
|
|
|
|
|
|
|
|
mf.Metric = append(mf.Metric, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(mf.Metric) != 0 {
|
|
|
|
result = append(result, mf)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return result
|
|
|
|
}
|