2015-02-18 21:40:55 +00:00
|
|
|
// Copyright 2013 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
2013-07-05 22:12:43 +00:00
|
|
|
//
|
2015-02-18 21:40:55 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2014-06-26 13:56:21 +00:00
|
|
|
"bytes"
|
|
|
|
"encoding/binary"
|
2013-07-05 22:12:43 +00:00
|
|
|
"fmt"
|
2014-06-26 13:56:21 +00:00
|
|
|
"hash/fnv"
|
2013-07-05 22:12:43 +00:00
|
|
|
"net"
|
2013-07-12 12:27:51 +00:00
|
|
|
"regexp"
|
2013-07-05 22:12:43 +00:00
|
|
|
"strconv"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
2016-05-04 19:16:17 +00:00
|
|
|
"github.com/prometheus/common/log"
|
2015-09-17 11:14:18 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2013-07-05 22:12:43 +00:00
|
|
|
)
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
const (
|
2015-10-10 00:34:28 +00:00
|
|
|
defaultHelp = "Metric autogenerated by statsd_exporter."
|
2014-06-26 13:56:21 +00:00
|
|
|
regErrF = "A change of configuration created inconsistent metrics for " +
|
2015-10-10 00:34:28 +00:00
|
|
|
"%q. You have to restart the statsd_exporter, and you should " +
|
2014-06-26 13:56:21 +00:00
|
|
|
"consider the effects on your monitoring setup. Error: %s"
|
|
|
|
)
|
|
|
|
|
2013-07-12 12:27:51 +00:00
|
|
|
var (
|
|
|
|
illegalCharsRE = regexp.MustCompile(`[^a-zA-Z0-9_]`)
|
2014-06-26 13:56:21 +00:00
|
|
|
|
|
|
|
hash = fnv.New64a()
|
|
|
|
strBuf bytes.Buffer // Used for hashing.
|
|
|
|
intBuf = make([]byte, 8)
|
2013-07-12 12:27:51 +00:00
|
|
|
)
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
// hashNameAndLabels returns a hash value of the provided name string and all
|
|
|
|
// the label names and values in the provided labels map.
|
|
|
|
//
|
|
|
|
// Not safe for concurrent use! (Uses a shared buffer and hasher to save on
|
|
|
|
// allocations.)
|
|
|
|
func hashNameAndLabels(name string, labels prometheus.Labels) uint64 {
|
|
|
|
hash.Reset()
|
|
|
|
strBuf.Reset()
|
|
|
|
strBuf.WriteString(name)
|
|
|
|
hash.Write(strBuf.Bytes())
|
|
|
|
binary.BigEndian.PutUint64(intBuf, model.LabelsToSignature(labels))
|
|
|
|
hash.Write(intBuf)
|
|
|
|
return hash.Sum64()
|
|
|
|
}
|
|
|
|
|
2013-07-05 22:12:43 +00:00
|
|
|
type CounterContainer struct {
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements map[uint64]prometheus.Counter
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewCounterContainer() *CounterContainer {
|
|
|
|
return &CounterContainer{
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements: make(map[uint64]prometheus.Counter),
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
func (c *CounterContainer) Get(metricName string, labels prometheus.Labels) prometheus.Counter {
|
|
|
|
hash := hashNameAndLabels(metricName, labels)
|
|
|
|
counter, ok := c.Elements[hash]
|
2013-07-05 22:12:43 +00:00
|
|
|
if !ok {
|
2014-06-26 13:56:21 +00:00
|
|
|
counter = prometheus.NewCounter(prometheus.CounterOpts{
|
|
|
|
Name: metricName,
|
|
|
|
Help: defaultHelp,
|
|
|
|
ConstLabels: labels,
|
|
|
|
})
|
|
|
|
c.Elements[hash] = counter
|
2015-01-12 18:14:29 +00:00
|
|
|
if err := prometheus.Register(counter); err != nil {
|
2014-06-26 13:56:21 +00:00
|
|
|
log.Fatalf(regErrF, metricName, err)
|
|
|
|
}
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
return counter
|
|
|
|
}
|
|
|
|
|
|
|
|
type GaugeContainer struct {
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements map[uint64]prometheus.Gauge
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewGaugeContainer() *GaugeContainer {
|
|
|
|
return &GaugeContainer{
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements: make(map[uint64]prometheus.Gauge),
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
func (c *GaugeContainer) Get(metricName string, labels prometheus.Labels) prometheus.Gauge {
|
|
|
|
hash := hashNameAndLabels(metricName, labels)
|
|
|
|
gauge, ok := c.Elements[hash]
|
2013-07-05 22:12:43 +00:00
|
|
|
if !ok {
|
2014-06-26 13:56:21 +00:00
|
|
|
gauge = prometheus.NewGauge(prometheus.GaugeOpts{
|
|
|
|
Name: metricName,
|
|
|
|
Help: defaultHelp,
|
|
|
|
ConstLabels: labels,
|
|
|
|
})
|
|
|
|
c.Elements[hash] = gauge
|
2015-01-12 18:14:29 +00:00
|
|
|
if err := prometheus.Register(gauge); err != nil {
|
2014-06-26 13:56:21 +00:00
|
|
|
log.Fatalf(regErrF, metricName, err)
|
|
|
|
}
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
return gauge
|
|
|
|
}
|
|
|
|
|
|
|
|
type SummaryContainer struct {
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements map[uint64]prometheus.Summary
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewSummaryContainer() *SummaryContainer {
|
|
|
|
return &SummaryContainer{
|
2014-06-26 13:56:21 +00:00
|
|
|
Elements: make(map[uint64]prometheus.Summary),
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
func (c *SummaryContainer) Get(metricName string, labels prometheus.Labels) prometheus.Summary {
|
|
|
|
hash := hashNameAndLabels(metricName, labels)
|
|
|
|
summary, ok := c.Elements[hash]
|
2013-07-05 22:12:43 +00:00
|
|
|
if !ok {
|
2014-06-26 13:56:21 +00:00
|
|
|
summary = prometheus.NewSummary(
|
|
|
|
prometheus.SummaryOpts{
|
|
|
|
Name: metricName,
|
|
|
|
Help: defaultHelp,
|
|
|
|
ConstLabels: labels,
|
|
|
|
})
|
|
|
|
c.Elements[hash] = summary
|
2015-01-12 18:14:29 +00:00
|
|
|
if err := prometheus.Register(summary); err != nil {
|
2014-06-26 13:56:21 +00:00
|
|
|
log.Fatalf(regErrF, metricName, err)
|
|
|
|
}
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
return summary
|
|
|
|
}
|
|
|
|
|
|
|
|
type Event interface {
|
|
|
|
MetricName() string
|
|
|
|
Value() float64
|
2014-11-04 11:44:59 +00:00
|
|
|
Labels() map[string]string
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type CounterEvent struct {
|
|
|
|
metricName string
|
|
|
|
value float64
|
2014-11-04 11:44:59 +00:00
|
|
|
labels map[string]string
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
func (c *CounterEvent) MetricName() string { return c.metricName }
|
|
|
|
func (c *CounterEvent) Value() float64 { return c.value }
|
|
|
|
func (c *CounterEvent) Labels() map[string]string { return c.labels }
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
type GaugeEvent struct {
|
|
|
|
metricName string
|
|
|
|
value float64
|
2014-11-04 11:44:59 +00:00
|
|
|
labels map[string]string
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
func (g *GaugeEvent) MetricName() string { return g.metricName }
|
|
|
|
func (g *GaugeEvent) Value() float64 { return g.value }
|
|
|
|
func (c *GaugeEvent) Labels() map[string]string { return c.labels }
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
type TimerEvent struct {
|
|
|
|
metricName string
|
|
|
|
value float64
|
2014-11-04 11:44:59 +00:00
|
|
|
labels map[string]string
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
func (t *TimerEvent) MetricName() string { return t.metricName }
|
|
|
|
func (t *TimerEvent) Value() float64 { return t.value }
|
|
|
|
func (c *TimerEvent) Labels() map[string]string { return c.labels }
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
type Events []Event
|
|
|
|
|
2015-10-10 00:34:28 +00:00
|
|
|
type Exporter struct {
|
2013-07-05 22:12:43 +00:00
|
|
|
Counters *CounterContainer
|
|
|
|
Gauges *GaugeContainer
|
|
|
|
Summaries *SummaryContainer
|
|
|
|
mapper *metricMapper
|
2016-05-02 18:53:00 +00:00
|
|
|
addSuffix bool
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func escapeMetricName(metricName string) string {
|
2013-07-12 12:27:51 +00:00
|
|
|
// If a metric starts with a digit, prepend an underscore.
|
|
|
|
if metricName[0] >= '0' && metricName[0] <= '9' {
|
|
|
|
metricName = "_" + metricName
|
|
|
|
}
|
|
|
|
|
|
|
|
// Replace all illegal metric chars with underscores.
|
|
|
|
metricName = illegalCharsRE.ReplaceAllString(metricName, "_")
|
2013-07-05 22:12:43 +00:00
|
|
|
return metricName
|
|
|
|
}
|
|
|
|
|
2016-05-02 18:53:00 +00:00
|
|
|
func (b *Exporter) suffix(metricName, suffix string) string {
|
|
|
|
str := metricName
|
|
|
|
if b.addSuffix {
|
|
|
|
str += "_" + suffix
|
|
|
|
}
|
|
|
|
return str
|
|
|
|
}
|
|
|
|
|
2015-10-10 00:34:28 +00:00
|
|
|
func (b *Exporter) Listen(e <-chan Events) {
|
2013-07-05 22:12:43 +00:00
|
|
|
for {
|
2016-03-30 01:55:14 +00:00
|
|
|
events, ok := <-e
|
|
|
|
if !ok {
|
|
|
|
log.Debug("Channel is closed. Break out of Exporter.Listener.")
|
|
|
|
return
|
|
|
|
}
|
2013-07-05 22:12:43 +00:00
|
|
|
for _, event := range events {
|
|
|
|
metricName := ""
|
2014-11-04 11:44:59 +00:00
|
|
|
prometheusLabels := event.Labels()
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
labels, present := b.mapper.getMapping(event.MetricName())
|
|
|
|
if present {
|
|
|
|
metricName = labels["name"]
|
|
|
|
for label, value := range labels {
|
|
|
|
if label != "name" {
|
|
|
|
prometheusLabels[label] = value
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
2016-05-02 19:19:46 +00:00
|
|
|
eventsUnmapped.Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
metricName = escapeMetricName(event.MetricName())
|
|
|
|
}
|
|
|
|
|
|
|
|
switch event.(type) {
|
|
|
|
case *CounterEvent:
|
2014-06-26 13:56:21 +00:00
|
|
|
counter := b.Counters.Get(
|
2016-05-02 18:53:00 +00:00
|
|
|
b.suffix(metricName, "counter"),
|
2014-06-26 13:56:21 +00:00
|
|
|
prometheusLabels,
|
|
|
|
)
|
2016-03-30 01:55:14 +00:00
|
|
|
// We don't accept negative values for counters. Incrementing the counter with a negative number
|
|
|
|
// will cause the exporter to panic. Instead we will warn and continue to the next event.
|
|
|
|
if event.Value() < 0.0 {
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Counter %q is: '%f' (counter must be non-negative value)", metricName, event.Value())
|
2016-03-30 01:55:14 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
counter.Add(event.Value())
|
2013-07-05 22:12:43 +00:00
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
eventStats.WithLabelValues("counter").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
case *GaugeEvent:
|
2014-06-26 13:56:21 +00:00
|
|
|
gauge := b.Gauges.Get(
|
2016-05-02 18:53:00 +00:00
|
|
|
b.suffix(metricName, "gauge"),
|
2014-06-26 13:56:21 +00:00
|
|
|
prometheusLabels,
|
|
|
|
)
|
|
|
|
gauge.Set(event.Value())
|
2013-07-05 22:12:43 +00:00
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
eventStats.WithLabelValues("gauge").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
case *TimerEvent:
|
2014-06-26 13:56:21 +00:00
|
|
|
summary := b.Summaries.Get(
|
2016-05-02 18:53:00 +00:00
|
|
|
b.suffix(metricName, "timer"),
|
2014-06-26 13:56:21 +00:00
|
|
|
prometheusLabels,
|
|
|
|
)
|
|
|
|
summary.Observe(event.Value())
|
2013-07-05 22:12:43 +00:00
|
|
|
|
2014-06-26 13:56:21 +00:00
|
|
|
eventStats.WithLabelValues("timer").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
|
|
|
|
default:
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorln("Unsupported event type")
|
2014-06-26 13:56:21 +00:00
|
|
|
eventStats.WithLabelValues("illegal").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-05-02 18:53:00 +00:00
|
|
|
func NewExporter(mapper *metricMapper, addSuffix bool) *Exporter {
|
2015-10-10 00:34:28 +00:00
|
|
|
return &Exporter{
|
2016-05-02 18:53:00 +00:00
|
|
|
addSuffix: addSuffix,
|
2013-07-05 22:12:43 +00:00
|
|
|
Counters: NewCounterContainer(),
|
|
|
|
Gauges: NewGaugeContainer(),
|
|
|
|
Summaries: NewSummaryContainer(),
|
|
|
|
mapper: mapper,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type StatsDListener struct {
|
|
|
|
conn *net.UDPConn
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
func buildEvent(statType, metric string, value float64, labels map[string]string) (Event, error) {
|
2013-07-05 22:12:43 +00:00
|
|
|
switch statType {
|
|
|
|
case "c":
|
|
|
|
return &CounterEvent{
|
|
|
|
metricName: metric,
|
|
|
|
value: float64(value),
|
2014-11-04 11:44:59 +00:00
|
|
|
labels: labels,
|
2013-07-05 22:12:43 +00:00
|
|
|
}, nil
|
|
|
|
case "g":
|
|
|
|
return &GaugeEvent{
|
|
|
|
metricName: metric,
|
|
|
|
value: float64(value),
|
2014-11-04 11:44:59 +00:00
|
|
|
labels: labels,
|
2013-07-05 22:12:43 +00:00
|
|
|
}, nil
|
2014-11-04 11:44:59 +00:00
|
|
|
case "ms", "h":
|
2013-07-05 22:12:43 +00:00
|
|
|
return &TimerEvent{
|
|
|
|
metricName: metric,
|
|
|
|
value: float64(value),
|
2014-11-04 11:44:59 +00:00
|
|
|
labels: labels,
|
2013-07-05 22:12:43 +00:00
|
|
|
}, nil
|
|
|
|
case "s":
|
|
|
|
return nil, fmt.Errorf("No support for StatsD sets")
|
|
|
|
default:
|
|
|
|
return nil, fmt.Errorf("Bad stat type %s", statType)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (l *StatsDListener) Listen(e chan<- Events) {
|
2016-04-29 09:49:55 +00:00
|
|
|
buf := make([]byte, 65535)
|
2013-07-05 22:12:43 +00:00
|
|
|
for {
|
2016-04-29 09:49:55 +00:00
|
|
|
n, _, err := l.conn.ReadFromUDP(buf)
|
2013-07-05 22:12:43 +00:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
l.handlePacket(buf[0:n], e)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-23 21:50:41 +00:00
|
|
|
func parseDogStatsDTagsToLabels(component string) map[string]string {
|
|
|
|
labels := map[string]string{}
|
|
|
|
networkStats.WithLabelValues("dogstatsd_tags").Inc()
|
|
|
|
tags := strings.Split(component, ",")
|
|
|
|
for _, t := range tags {
|
|
|
|
t = strings.TrimPrefix(t, "#")
|
|
|
|
kv := strings.SplitN(t, ":", 2)
|
|
|
|
|
|
|
|
if len(kv) < 2 || len(kv[1]) == 0 {
|
|
|
|
networkStats.WithLabelValues("malformed_dogstatsd_tag").Inc()
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Malformed or empty DogStatsD tag %s in component %s", t, component)
|
2016-04-23 21:50:41 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
labels[escapeMetricName(kv[0])] = kv[1]
|
|
|
|
}
|
|
|
|
return labels
|
|
|
|
}
|
|
|
|
|
2013-07-05 22:12:43 +00:00
|
|
|
func (l *StatsDListener) handlePacket(packet []byte, e chan<- Events) {
|
|
|
|
lines := strings.Split(string(packet), "\n")
|
|
|
|
events := Events{}
|
|
|
|
for _, line := range lines {
|
|
|
|
if line == "" {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
elements := strings.SplitN(line, ":", 2)
|
2016-05-19 13:17:36 +00:00
|
|
|
if len(elements) < 2 || len(elements[0]) == 0 {
|
2014-06-26 13:56:21 +00:00
|
|
|
networkStats.WithLabelValues("malformed_line").Inc()
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorln("Bad line from StatsD:", line)
|
2013-07-05 22:12:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
metric := elements[0]
|
2014-11-04 11:44:59 +00:00
|
|
|
var samples []string
|
|
|
|
if strings.Contains(elements[1], "|#") {
|
|
|
|
// using datadog extensions, disable multi-metrics
|
|
|
|
samples = elements[1:]
|
|
|
|
} else {
|
|
|
|
samples = strings.Split(elements[1], ":")
|
|
|
|
}
|
2016-05-19 13:17:36 +00:00
|
|
|
samples: for _, sample := range samples {
|
2013-07-05 22:12:43 +00:00
|
|
|
components := strings.Split(sample, "|")
|
|
|
|
samplingFactor := 1.0
|
2014-11-04 11:44:59 +00:00
|
|
|
if len(components) < 2 || len(components) > 4 {
|
2014-06-26 13:56:21 +00:00
|
|
|
networkStats.WithLabelValues("malformed_component").Inc()
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorln("Bad component on line:", line)
|
2013-07-05 22:12:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
valueStr, statType := components[0], components[1]
|
|
|
|
value, err := strconv.ParseFloat(valueStr, 64)
|
|
|
|
if err != nil {
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Bad value %s on line: %s", valueStr, line)
|
2014-06-26 13:56:21 +00:00
|
|
|
networkStats.WithLabelValues("malformed_value").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2016-04-23 21:50:41 +00:00
|
|
|
labels := map[string]string{}
|
2014-11-04 11:44:59 +00:00
|
|
|
if len(components) >= 3 {
|
2016-05-19 13:17:36 +00:00
|
|
|
for _, component := range components[2:] {
|
|
|
|
if len(component) == 0 {
|
|
|
|
log.Errorln("Empty component on line: ", line)
|
|
|
|
networkStats.WithLabelValues("malformed_component").Inc()
|
|
|
|
continue samples
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
for _, component := range components[2:] {
|
|
|
|
switch component[0] {
|
|
|
|
case '@':
|
|
|
|
if statType != "c" {
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorln("Illegal sampling factor for non-counter metric on line", line)
|
2014-11-04 11:44:59 +00:00
|
|
|
networkStats.WithLabelValues("illegal_sample_factor").Inc()
|
|
|
|
}
|
|
|
|
samplingFactor, err = strconv.ParseFloat(component[1:], 64)
|
|
|
|
if err != nil {
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Invalid sampling factor %s on line %s", component[1:], line)
|
2014-11-04 11:44:59 +00:00
|
|
|
networkStats.WithLabelValues("invalid_sample_factor").Inc()
|
|
|
|
}
|
|
|
|
if samplingFactor == 0 {
|
|
|
|
samplingFactor = 1
|
|
|
|
}
|
|
|
|
value /= samplingFactor
|
|
|
|
case '#':
|
2016-04-23 21:50:41 +00:00
|
|
|
labels = parseDogStatsDTagsToLabels(component)
|
2014-11-04 11:44:59 +00:00
|
|
|
default:
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Invalid sampling factor or tag section %s on line %s", components[2], line)
|
2014-11-04 11:44:59 +00:00
|
|
|
networkStats.WithLabelValues("invalid_sample_factor").Inc()
|
|
|
|
continue
|
|
|
|
}
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-04 11:44:59 +00:00
|
|
|
event, err := buildEvent(statType, metric, value, labels)
|
2013-07-05 22:12:43 +00:00
|
|
|
if err != nil {
|
2016-05-04 19:16:17 +00:00
|
|
|
log.Errorf("Error building event on line %s: %s", line, err)
|
2014-06-26 13:56:21 +00:00
|
|
|
networkStats.WithLabelValues("illegal_event").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
events = append(events, event)
|
2014-06-26 13:56:21 +00:00
|
|
|
networkStats.WithLabelValues("legal").Inc()
|
2013-07-05 22:12:43 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
e <- events
|
|
|
|
}
|