2015-10-22 16:17:57 +00:00
|
|
|
package prometheus_client
|
|
|
|
|
|
|
|
import (
|
2017-01-21 23:37:53 +00:00
|
|
|
"context"
|
2015-10-22 16:17:57 +00:00
|
|
|
"fmt"
|
2015-12-01 17:08:38 +00:00
|
|
|
"log"
|
2015-10-28 22:19:13 +00:00
|
|
|
"net/http"
|
2016-03-22 16:34:33 +00:00
|
|
|
"regexp"
|
2017-06-14 01:04:26 +00:00
|
|
|
"sort"
|
|
|
|
"strings"
|
2016-07-10 13:47:47 +00:00
|
|
|
"sync"
|
2016-11-15 11:33:39 +00:00
|
|
|
"time"
|
2015-10-28 22:19:13 +00:00
|
|
|
|
2016-01-27 21:21:36 +00:00
|
|
|
"github.com/influxdata/telegraf"
|
2016-11-15 11:33:39 +00:00
|
|
|
"github.com/influxdata/telegraf/internal"
|
2016-01-27 23:15:14 +00:00
|
|
|
"github.com/influxdata/telegraf/plugins/outputs"
|
2015-10-22 16:17:57 +00:00
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
|
|
)
|
|
|
|
|
2016-07-20 08:24:34 +00:00
|
|
|
var invalidNameCharRE = regexp.MustCompile(`[^a-zA-Z0-9_]`)
|
2016-03-22 16:34:33 +00:00
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
// SampleID uniquely identifies a Sample
|
|
|
|
type SampleID string
|
|
|
|
|
|
|
|
// Sample represents the current value of a series.
|
|
|
|
type Sample struct {
|
|
|
|
// Labels are the Prometheus labels.
|
|
|
|
Labels map[string]string
|
|
|
|
// Value is the value in the Prometheus output.
|
|
|
|
Value float64
|
|
|
|
// Expiration is the deadline that this Sample is valid until.
|
2016-11-15 11:33:39 +00:00
|
|
|
Expiration time.Time
|
|
|
|
}
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
// MetricFamily contains the data required to build valid prometheus Metrics.
|
|
|
|
type MetricFamily struct {
|
|
|
|
// Samples are the Sample belonging to this MetricFamily.
|
|
|
|
Samples map[SampleID]*Sample
|
|
|
|
// Type of the Value.
|
|
|
|
ValueType prometheus.ValueType
|
|
|
|
// LabelSet is the label counts for all Samples.
|
|
|
|
LabelSet map[string]int
|
|
|
|
}
|
|
|
|
|
2015-10-22 16:17:57 +00:00
|
|
|
type PrometheusClient struct {
|
2016-11-15 11:33:39 +00:00
|
|
|
Listen string
|
|
|
|
ExpirationInterval internal.Duration `toml:"expiration_interval"`
|
2016-07-10 13:47:47 +00:00
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
server *http.Server
|
2016-07-10 13:47:47 +00:00
|
|
|
|
|
|
|
sync.Mutex
|
2017-06-14 01:04:26 +00:00
|
|
|
// fam is the non-expired MetricFamily by Prometheus metric name.
|
|
|
|
fam map[string]*MetricFamily
|
|
|
|
// now returns the current time.
|
|
|
|
now func() time.Time
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var sampleConfig = `
|
2016-02-18 21:26:51 +00:00
|
|
|
## Address to listen on
|
2017-06-29 21:03:42 +00:00
|
|
|
# listen = ":9273"
|
2016-11-15 11:33:39 +00:00
|
|
|
|
|
|
|
## Interval to expire metrics and not deliver to prometheus, 0 == no expiration
|
|
|
|
# expiration_interval = "60s"
|
2015-10-22 16:17:57 +00:00
|
|
|
`
|
|
|
|
|
|
|
|
func (p *PrometheusClient) Start() error {
|
2016-09-12 09:09:13 +00:00
|
|
|
prometheus.Register(p)
|
2017-01-21 23:37:53 +00:00
|
|
|
|
2015-10-22 16:17:57 +00:00
|
|
|
if p.Listen == "" {
|
2017-06-29 21:03:42 +00:00
|
|
|
p.Listen = "localhost:9273"
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
2015-10-28 22:19:13 +00:00
|
|
|
|
2017-01-21 23:37:53 +00:00
|
|
|
mux := http.NewServeMux()
|
|
|
|
mux.Handle("/metrics", prometheus.Handler())
|
|
|
|
|
|
|
|
p.server = &http.Server{
|
|
|
|
Addr: p.Listen,
|
|
|
|
Handler: mux,
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
2015-10-28 22:19:13 +00:00
|
|
|
|
2017-07-05 21:28:44 +00:00
|
|
|
go func() {
|
|
|
|
if err := p.server.ListenAndServe(); err != nil {
|
2017-07-25 22:41:18 +00:00
|
|
|
if err != http.ErrServerClosed {
|
|
|
|
log.Printf("E! Error creating prometheus metric endpoint, err: %s\n",
|
|
|
|
err.Error())
|
|
|
|
}
|
2017-07-05 21:28:44 +00:00
|
|
|
}
|
|
|
|
}()
|
2015-10-22 16:17:57 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrometheusClient) Stop() {
|
2017-01-21 23:37:53 +00:00
|
|
|
// plugin gets cleaned up in Close() already.
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrometheusClient) Connect() error {
|
|
|
|
// This service output does not need to make any further connections
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrometheusClient) Close() error {
|
2017-01-21 23:37:53 +00:00
|
|
|
ctx, cancel := context.WithTimeout(context.Background(), time.Second*5)
|
|
|
|
defer cancel()
|
2017-07-25 22:41:18 +00:00
|
|
|
err := p.server.Shutdown(ctx)
|
|
|
|
prometheus.Unregister(p)
|
|
|
|
return err
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrometheusClient) SampleConfig() string {
|
|
|
|
return sampleConfig
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *PrometheusClient) Description() string {
|
|
|
|
return "Configuration for the Prometheus client to spawn"
|
|
|
|
}
|
|
|
|
|
2016-07-10 13:47:47 +00:00
|
|
|
// Implements prometheus.Collector
|
|
|
|
func (p *PrometheusClient) Describe(ch chan<- *prometheus.Desc) {
|
|
|
|
prometheus.NewGauge(prometheus.GaugeOpts{Name: "Dummy", Help: "Dummy"}).Describe(ch)
|
|
|
|
}
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
// Expire removes Samples that have expired.
|
|
|
|
func (p *PrometheusClient) Expire() {
|
|
|
|
now := p.now()
|
|
|
|
for name, family := range p.fam {
|
|
|
|
for key, sample := range family.Samples {
|
|
|
|
if p.ExpirationInterval.Duration != 0 && now.After(sample.Expiration) {
|
|
|
|
for k, _ := range sample.Labels {
|
|
|
|
family.LabelSet[k]--
|
|
|
|
}
|
|
|
|
delete(family.Samples, key)
|
|
|
|
|
|
|
|
if len(family.Samples) == 0 {
|
|
|
|
delete(p.fam, name)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Collect implements prometheus.Collector
|
2016-07-10 13:47:47 +00:00
|
|
|
func (p *PrometheusClient) Collect(ch chan<- prometheus.Metric) {
|
|
|
|
p.Lock()
|
|
|
|
defer p.Unlock()
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
p.Expire()
|
|
|
|
|
|
|
|
for name, family := range p.fam {
|
|
|
|
// Get list of all labels on MetricFamily
|
|
|
|
var labelNames []string
|
|
|
|
for k, v := range family.LabelSet {
|
|
|
|
if v > 0 {
|
|
|
|
labelNames = append(labelNames, k)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
desc := prometheus.NewDesc(name, "Telegraf collected metric", labelNames, nil)
|
|
|
|
|
|
|
|
for _, sample := range family.Samples {
|
|
|
|
// Get labels for this sample; unset labels will be set to the
|
|
|
|
// empty string
|
|
|
|
var labels []string
|
|
|
|
for _, label := range labelNames {
|
|
|
|
v := sample.Labels[label]
|
|
|
|
labels = append(labels, v)
|
|
|
|
}
|
|
|
|
|
|
|
|
metric, err := prometheus.NewConstMetric(desc, family.ValueType, sample.Value, labels...)
|
|
|
|
if err != nil {
|
|
|
|
log.Printf("E! Error creating prometheus metric, "+
|
|
|
|
"key: %s, labels: %v,\nerr: %s\n",
|
|
|
|
name, labels, err.Error())
|
|
|
|
}
|
|
|
|
|
|
|
|
ch <- metric
|
2016-09-16 14:43:53 +00:00
|
|
|
}
|
2016-07-10 13:47:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
func sanitize(value string) string {
|
|
|
|
return invalidNameCharRE.ReplaceAllString(value, "_")
|
|
|
|
}
|
|
|
|
|
|
|
|
func valueType(tt telegraf.ValueType) prometheus.ValueType {
|
|
|
|
switch tt {
|
|
|
|
case telegraf.Counter:
|
|
|
|
return prometheus.CounterValue
|
|
|
|
case telegraf.Gauge:
|
|
|
|
return prometheus.GaugeValue
|
|
|
|
default:
|
|
|
|
return prometheus.UntypedValue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// CreateSampleID creates a SampleID based on the tags of a telegraf.Metric.
|
|
|
|
func CreateSampleID(tags map[string]string) SampleID {
|
|
|
|
pairs := make([]string, 0, len(tags))
|
|
|
|
for k, v := range tags {
|
|
|
|
pairs = append(pairs, fmt.Sprintf("%s=%s", k, v))
|
|
|
|
}
|
|
|
|
sort.Strings(pairs)
|
|
|
|
return SampleID(strings.Join(pairs, ","))
|
|
|
|
}
|
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
func (p *PrometheusClient) Write(metrics []telegraf.Metric) error {
|
2016-07-10 13:47:47 +00:00
|
|
|
p.Lock()
|
|
|
|
defer p.Unlock()
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
now := p.now()
|
2015-10-22 16:17:57 +00:00
|
|
|
|
2016-01-27 23:15:14 +00:00
|
|
|
for _, point := range metrics {
|
2017-06-14 01:04:26 +00:00
|
|
|
tags := point.Tags()
|
|
|
|
vt := valueType(point.Type())
|
|
|
|
sampleID := CreateSampleID(tags)
|
2015-10-22 16:17:57 +00:00
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
labels := make(map[string]string)
|
|
|
|
for k, v := range tags {
|
2017-06-21 19:36:29 +00:00
|
|
|
labels[sanitize(k)] = v
|
2016-08-30 17:09:48 +00:00
|
|
|
}
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
for fn, fv := range point.Fields() {
|
2016-03-23 14:57:05 +00:00
|
|
|
// Ignore string and bool fields.
|
2017-06-14 01:04:26 +00:00
|
|
|
var value float64
|
|
|
|
switch fv := fv.(type) {
|
|
|
|
case int64:
|
|
|
|
value = float64(fv)
|
|
|
|
case float64:
|
|
|
|
value = fv
|
|
|
|
default:
|
2016-03-23 14:57:05 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
sample := &Sample{
|
|
|
|
Labels: labels,
|
|
|
|
Value: value,
|
|
|
|
Expiration: now.Add(p.ExpirationInterval.Duration),
|
|
|
|
}
|
|
|
|
|
|
|
|
// Special handling of value field; supports passthrough from
|
|
|
|
// the prometheus input.
|
2016-03-08 18:33:57 +00:00
|
|
|
var mname string
|
2017-06-14 01:04:26 +00:00
|
|
|
if fn == "value" {
|
|
|
|
mname = sanitize(point.Name())
|
2016-03-08 18:33:57 +00:00
|
|
|
} else {
|
2017-06-14 01:04:26 +00:00
|
|
|
mname = sanitize(fmt.Sprintf("%s_%s", point.Name(), fn))
|
2016-03-08 18:33:57 +00:00
|
|
|
}
|
2016-03-22 16:34:33 +00:00
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
var fam *MetricFamily
|
|
|
|
var ok bool
|
|
|
|
if fam, ok = p.fam[mname]; !ok {
|
|
|
|
fam = &MetricFamily{
|
|
|
|
Samples: make(map[SampleID]*Sample),
|
|
|
|
ValueType: vt,
|
|
|
|
LabelSet: make(map[string]int),
|
|
|
|
}
|
|
|
|
p.fam[mname] = fam
|
|
|
|
} else {
|
|
|
|
if fam.ValueType != vt {
|
|
|
|
// Don't return an error since this would be a permanent error
|
|
|
|
log.Printf("Mixed ValueType for measurement %q; dropping point", point.Name())
|
|
|
|
break
|
|
|
|
}
|
2016-07-10 13:47:47 +00:00
|
|
|
}
|
2016-11-15 11:33:39 +00:00
|
|
|
|
2017-06-14 01:04:26 +00:00
|
|
|
for k, _ := range sample.Labels {
|
|
|
|
fam.LabelSet[k]++
|
2016-11-15 11:33:39 +00:00
|
|
|
}
|
2017-06-14 01:04:26 +00:00
|
|
|
|
|
|
|
fam.Samples[sampleID] = sample
|
2015-10-22 16:17:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
2016-01-27 21:21:36 +00:00
|
|
|
outputs.Add("prometheus_client", func() telegraf.Output {
|
2016-11-15 11:33:39 +00:00
|
|
|
return &PrometheusClient{
|
|
|
|
ExpirationInterval: internal.Duration{Duration: time.Second * 60},
|
2017-06-14 01:04:26 +00:00
|
|
|
fam: make(map[string]*MetricFamily),
|
|
|
|
now: time.Now,
|
2016-11-15 11:33:39 +00:00
|
|
|
}
|
2015-10-22 16:17:57 +00:00
|
|
|
})
|
|
|
|
}
|