I use this exporter as an api, and I need to implement another custom label strategy. Purpose being to habe business logic in those labels (datacenter, ...). Because the interface is private, this can not be implemented elsewhere. This commit makes it public. Signed-off-by: Arthur Gautier <baloo@gandi.net>
9 lines
170 B
Go
9 lines
170 B
Go
package metrics
|
|
|
|
import "github.com/czerwonk/bird_exporter/protocol"
|
|
|
|
type LabelStrategy interface {
|
|
LabelNames() []string
|
|
LabelValues(p *protocol.Protocol) []string
|
|
}
|