Update label_strategy.go
This commit is contained in:
parent
f8a98ca19c
commit
42bfdbb0fc
@ -2,7 +2,11 @@ package metrics
|
|||||||
|
|
||||||
import "github.com/czerwonk/bird_exporter/protocol"
|
import "github.com/czerwonk/bird_exporter/protocol"
|
||||||
|
|
||||||
|
// LabelStrategy abstracts the label generation for protocol metrics
|
||||||
type LabelStrategy interface {
|
type LabelStrategy interface {
|
||||||
|
// LabelNames is the list of label names
|
||||||
LabelNames() []string
|
LabelNames() []string
|
||||||
|
|
||||||
|
// Label values is the list of values for the labels specified in `LabelNames()`
|
||||||
LabelValues(p *protocol.Protocol) []string
|
LabelValues(p *protocol.Protocol) []string
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user