From 42bfdbb0fcfa4e80264f0000c85d78c3810012bb Mon Sep 17 00:00:00 2001 From: Daniel Czerwonk Date: Thu, 9 Aug 2018 11:34:24 +0200 Subject: [PATCH] Update label_strategy.go --- metrics/label_strategy.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/metrics/label_strategy.go b/metrics/label_strategy.go index f0fb358..d83fdee 100644 --- a/metrics/label_strategy.go +++ b/metrics/label_strategy.go @@ -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 }