Update label_strategy.go

This commit is contained in:
Daniel Czerwonk 2018-08-09 11:34:24 +02:00 committed by GitHub
parent f8a98ca19c
commit 42bfdbb0fc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,7 +2,11 @@ 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
}