bird_exporter/metrics/label_strategy.go
2018-08-09 11:34:24 +02:00

13 lines
366 B
Go

package metrics
import "github.com/czerwonk/bird_exporter/protocol"
// LabelStrategy abstracts the label generation for protocol metrics
type LabelStrategy interface {
// LabelNames is the list of label names
LabelNames() []string
// Label values is the list of values for the labels specified in `LabelNames()`
LabelValues(p *protocol.Protocol) []string
}