forked from mirrors/statsd_exporter
0135b40c08
- Statsd allows users to provide a metric with the same name but differing types (counter, gauge, timer) - The exporter allows this by letting users specify a "match_metric_type" in the mapping config - However the mapper cache does not look at the metric type so it would return a MetricMapperCacheResult for the type of the first metric with that name that the exporter saw - Add MetricType to the signature for the cache and format the metric name with the type to provide unique keys for a metric with the same name but differing type Signed-off-by: Andy Paine <andy.paine@digital.cabinet-office.gov.uk>
106 lines
3.1 KiB
Go
106 lines
3.1 KiB
Go
// Copyright 2019 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
|
|
//
|
|
// 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.
|
|
|
|
package mapper
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/hashicorp/golang-lru"
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
)
|
|
|
|
var (
|
|
cacheLength = prometheus.NewGauge(
|
|
prometheus.GaugeOpts{
|
|
Name: "statsd_exporter_cache_length",
|
|
Help: "The count of unique metrics currently cached.",
|
|
},
|
|
)
|
|
)
|
|
|
|
type MetricMapperCacheResult struct {
|
|
Mapping *MetricMapping
|
|
Matched bool
|
|
Labels prometheus.Labels
|
|
}
|
|
|
|
type MetricMapperCache interface {
|
|
Get(metricString string, metricType MetricType) (*MetricMapperCacheResult, bool)
|
|
AddMatch(metricString string, metricType MetricType, mapping *MetricMapping, labels prometheus.Labels)
|
|
AddMiss(metricString string, metricType MetricType)
|
|
}
|
|
|
|
type MetricMapperLRUCache struct {
|
|
MetricMapperCache
|
|
cache *lru.Cache
|
|
}
|
|
|
|
type MetricMapperNoopCache struct {
|
|
MetricMapperCache
|
|
}
|
|
|
|
func NewMetricMapperCache(size int) (*MetricMapperLRUCache, error) {
|
|
cacheLength.Set(0)
|
|
cache, err := lru.New(size)
|
|
if err != nil {
|
|
return &MetricMapperLRUCache{}, err
|
|
}
|
|
return &MetricMapperLRUCache{cache: cache}, nil
|
|
}
|
|
|
|
func (m *MetricMapperLRUCache) Get(metricString string, metricType MetricType) (*MetricMapperCacheResult, bool) {
|
|
if result, ok := m.cache.Get(formatKey(metricString, metricType)); ok {
|
|
return result.(*MetricMapperCacheResult), true
|
|
} else {
|
|
return nil, false
|
|
}
|
|
}
|
|
|
|
func (m *MetricMapperLRUCache) AddMatch(metricString string, metricType MetricType, mapping *MetricMapping, labels prometheus.Labels) {
|
|
go m.trackCacheLength()
|
|
m.cache.Add(formatKey(metricString, metricType), &MetricMapperCacheResult{Mapping: mapping, Matched: true, Labels: labels})
|
|
}
|
|
|
|
func (m *MetricMapperLRUCache) AddMiss(metricString string, metricType MetricType) {
|
|
go m.trackCacheLength()
|
|
m.cache.Add(formatKey(metricString, metricType), &MetricMapperCacheResult{Matched: false})
|
|
}
|
|
|
|
func (m *MetricMapperLRUCache) trackCacheLength() {
|
|
cacheLength.Set(float64(m.cache.Len()))
|
|
}
|
|
|
|
func formatKey(metricString string, metricType MetricType) string {
|
|
return fmt.Sprintf("%s.%s", string(metricType), metricString)
|
|
}
|
|
|
|
func NewMetricMapperNoopCache() *MetricMapperNoopCache {
|
|
cacheLength.Set(0)
|
|
return &MetricMapperNoopCache{}
|
|
}
|
|
|
|
func (m *MetricMapperNoopCache) Get(metricString string, metricType MetricType) (*MetricMapperCacheResult, bool) {
|
|
return nil, false
|
|
}
|
|
|
|
func (m *MetricMapperNoopCache) AddMatch(metricString string, metricType MetricType, mapping *MetricMapping, labels prometheus.Labels) {
|
|
return
|
|
}
|
|
|
|
func (m *MetricMapperNoopCache) AddMiss(metricString string, metricType MetricType) {
|
|
return
|
|
}
|
|
|
|
func init() {
|
|
prometheus.MustRegister(cacheLength)
|
|
}
|