mirror of
https://github.com/prometheus/statsd_exporter.git
synced 2024-11-25 16:51:00 +00:00
Merge pull request #521 from rabenhorst/mapping-honor-labels
Add configuration for keeping original labels in mappings
This commit is contained in:
commit
1e89c26ad6
3 changed files with 57 additions and 1 deletions
|
@ -105,6 +105,10 @@ func (b *Exporter) handleEvent(thisEvent event.Event) {
|
||||||
}
|
}
|
||||||
metricName = mapper.EscapeMetricName(mapping.Name)
|
metricName = mapper.EscapeMetricName(mapping.Name)
|
||||||
for label, value := range labels {
|
for label, value := range labels {
|
||||||
|
if _, ok := prometheusLabels[label]; mapping.HonorLabels && ok {
|
||||||
|
continue
|
||||||
|
}
|
||||||
|
|
||||||
prometheusLabels[label] = value
|
prometheusLabels[label] = value
|
||||||
}
|
}
|
||||||
b.EventsActions.WithLabelValues(string(mapping.Action)).Inc()
|
b.EventsActions.WithLabelValues(string(mapping.Action)).Inc()
|
||||||
|
|
|
@ -277,7 +277,7 @@ mappings:
|
||||||
// TestLabelParsing verifies that labels getting parsed out of metric
|
// TestLabelParsing verifies that labels getting parsed out of metric
|
||||||
// names are being properly created.
|
// names are being properly created.
|
||||||
func TestLabelParsing(t *testing.T) {
|
func TestLabelParsing(t *testing.T) {
|
||||||
codes := [2]string{"200", "300"}
|
codes := [3]string{"200", "300", "400"}
|
||||||
|
|
||||||
events := make(chan event.Events)
|
events := make(chan event.Events)
|
||||||
go func() {
|
go func() {
|
||||||
|
@ -292,6 +292,11 @@ func TestLabelParsing(t *testing.T) {
|
||||||
CValue: 1,
|
CValue: 1,
|
||||||
CLabels: make(map[string]string),
|
CLabels: make(map[string]string),
|
||||||
},
|
},
|
||||||
|
&event.CounterEvent{
|
||||||
|
CMetricName: "counter.test.400",
|
||||||
|
CValue: 1,
|
||||||
|
CLabels: map[string]string{"code": "should be overwritten"},
|
||||||
|
},
|
||||||
}
|
}
|
||||||
events <- c
|
events <- c
|
||||||
close(events)
|
close(events)
|
||||||
|
@ -329,6 +334,51 @@ mappings:
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func TestHonorLabels(t *testing.T) {
|
||||||
|
metricName := "some_counter"
|
||||||
|
events := make(chan event.Events)
|
||||||
|
go func() {
|
||||||
|
c := event.Events{
|
||||||
|
&event.CounterEvent{
|
||||||
|
CMetricName: metricName,
|
||||||
|
CValue: 1,
|
||||||
|
CLabels: map[string]string{"some_label": "bar"},
|
||||||
|
},
|
||||||
|
}
|
||||||
|
events <- c
|
||||||
|
close(events)
|
||||||
|
}()
|
||||||
|
|
||||||
|
config := `
|
||||||
|
mappings:
|
||||||
|
- match: .*
|
||||||
|
match_type: regex
|
||||||
|
name: $0
|
||||||
|
labels:
|
||||||
|
some_label: foo
|
||||||
|
honor_labels: true
|
||||||
|
`
|
||||||
|
testMapper := &mapper.MetricMapper{
|
||||||
|
Logger: log.NewNopLogger(),
|
||||||
|
}
|
||||||
|
err := testMapper.InitFromYAMLString(config)
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Config load error: %s %s", config, err)
|
||||||
|
}
|
||||||
|
|
||||||
|
ex := NewExporter(prometheus.DefaultRegisterer, testMapper, log.NewNopLogger(), eventsActions, eventsUnmapped, errorEventStats, eventStats, conflictingEventStats, metricsCount)
|
||||||
|
ex.Listen(events)
|
||||||
|
|
||||||
|
metrics, err := prometheus.DefaultGatherer.Gather()
|
||||||
|
if err != nil {
|
||||||
|
t.Fatalf("Cannot gather from DefaultGatherer: %v", err)
|
||||||
|
}
|
||||||
|
|
||||||
|
if getFloat64(metrics, metricName, map[string]string{"some_label": "bar"}) == nil {
|
||||||
|
t.Fatalf("Could not find metrics for %s with label set", metricName)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// TestConflictingMetrics validates that the exporter will not register metrics
|
// TestConflictingMetrics validates that the exporter will not register metrics
|
||||||
// of different types that have overlapping names.
|
// of different types that have overlapping names.
|
||||||
func TestConflictingMetrics(t *testing.T) {
|
func TestConflictingMetrics(t *testing.T) {
|
||||||
|
|
|
@ -28,6 +28,7 @@ type MetricMapping struct {
|
||||||
nameFormatter *fsm.TemplateFormatter
|
nameFormatter *fsm.TemplateFormatter
|
||||||
regex *regexp.Regexp
|
regex *regexp.Regexp
|
||||||
Labels prometheus.Labels `yaml:"labels"`
|
Labels prometheus.Labels `yaml:"labels"`
|
||||||
|
HonorLabels bool `yaml:"honor_labels"`
|
||||||
labelKeys []string
|
labelKeys []string
|
||||||
labelFormatters []*fsm.TemplateFormatter
|
labelFormatters []*fsm.TemplateFormatter
|
||||||
ObserverType ObserverType `yaml:"observer_type"`
|
ObserverType ObserverType `yaml:"observer_type"`
|
||||||
|
@ -57,6 +58,7 @@ func (m *MetricMapping) UnmarshalYAML(unmarshal func(interface{}) error) error {
|
||||||
m.Match = tmp.Match
|
m.Match = tmp.Match
|
||||||
m.Name = tmp.Name
|
m.Name = tmp.Name
|
||||||
m.Labels = tmp.Labels
|
m.Labels = tmp.Labels
|
||||||
|
m.HonorLabels = tmp.HonorLabels
|
||||||
m.ObserverType = tmp.ObserverType
|
m.ObserverType = tmp.ObserverType
|
||||||
m.LegacyBuckets = tmp.LegacyBuckets
|
m.LegacyBuckets = tmp.LegacyBuckets
|
||||||
m.LegacyQuantiles = tmp.LegacyQuantiles
|
m.LegacyQuantiles = tmp.LegacyQuantiles
|
||||||
|
|
Loading…
Reference in a new issue