From f7bc5148a447ba33f2a52818b2abadd113957c0b Mon Sep 17 00:00:00 2001 From: Daniel Czerwonk Date: Fri, 11 Feb 2022 07:19:04 +0100 Subject: [PATCH] reuse regex, ensure custom label names are trimmed --- metrics/default_label_strategy.go | 39 ++++++++++++++----------------- 1 file changed, 17 insertions(+), 22 deletions(-) diff --git a/metrics/default_label_strategy.go b/metrics/default_label_strategy.go index 0926068..c280806 100644 --- a/metrics/default_label_strategy.go +++ b/metrics/default_label_strategy.go @@ -2,6 +2,7 @@ package metrics import ( "regexp" + "strings" "github.com/czerwonk/bird_exporter/protocol" ) @@ -9,13 +10,13 @@ import ( // DefaultLabelStrategy defines the labels to add to an metric and its data retrieval method type DefaultLabelStrategy struct { descriptionLabels bool - descriptionLabelsRegex string + descriptionLabelsRegex *regexp.Regexp } func NewDefaultLabelStrategy(descriptionLabels bool, descriptionLabelsRegex string) *DefaultLabelStrategy { return &DefaultLabelStrategy{ descriptionLabels: descriptionLabels, - descriptionLabelsRegex: descriptionLabelsRegex, + descriptionLabelsRegex: regexp.MustCompile(descriptionLabelsRegex), } } @@ -39,32 +40,26 @@ func (d *DefaultLabelStrategy) LabelValues(p *protocol.Protocol) []string { return res } -func labelKeysFromDescription(desc string, d *DefaultLabelStrategy) (res []string) { - reAllStringSubmatch := labelFindAllStringSubmatch(desc, d) - for _, submatch := range reAllStringSubmatch { - res = append(res, submatch[1]) +func labelKeysFromDescription(desc string, d *DefaultLabelStrategy) []string { + res := []string{} + + matches := d.descriptionLabelsRegex.FindAllStringSubmatch(desc, -1) + for _, submatch := range matches { + res = append(res, strings.TrimSpace(submatch[1])) } - return + return res } -func labelValuesFromDescription(desc string, d *DefaultLabelStrategy) (res []string) { - reAllStringSubmatch := labelFindAllStringSubmatch(desc, d) - for _, submatch := range reAllStringSubmatch { - res = append(res, submatch[2]) +func labelValuesFromDescription(desc string, d *DefaultLabelStrategy) []string { + res := []string{} + + matches := d.descriptionLabelsRegex.FindAllStringSubmatch(desc, -1) + for _, submatch := range matches { + res = append(res, strings.TrimSpace(submatch[2])) } - return -} - -func labelFindAllStringSubmatch(desc string, d *DefaultLabelStrategy) (result [][]string) { - - // Regex pattern captures "key: value" pair from the content. - pattern := regexp.MustCompile(d.descriptionLabelsRegex) - - result = pattern.FindAllStringSubmatch(desc, -1) - - return + return res } func protoString(p *protocol.Protocol) string {