2015-08-24 17:19:21 +00:00
|
|
|
// Copyright 2015 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2016-08-09 10:36:23 +00:00
|
|
|
package relabel
|
2015-04-28 22:08:58 +00:00
|
|
|
|
|
|
|
import (
|
2015-08-12 14:44:42 +00:00
|
|
|
"crypto/md5"
|
2015-05-07 08:55:03 +00:00
|
|
|
"fmt"
|
2015-04-28 22:08:58 +00:00
|
|
|
"strings"
|
|
|
|
|
2015-08-20 15:18:46 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2015-04-28 22:08:58 +00:00
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/config"
|
|
|
|
)
|
|
|
|
|
2016-08-09 10:36:23 +00:00
|
|
|
// Process returns a relabeled copy of the given label set. The relabel configurations
|
2015-04-28 22:08:58 +00:00
|
|
|
// are applied in order of input.
|
|
|
|
// If a label set is dropped, nil is returned.
|
2016-08-09 10:36:23 +00:00
|
|
|
func Process(labels model.LabelSet, cfgs ...*config.RelabelConfig) model.LabelSet {
|
2015-08-20 15:18:46 +00:00
|
|
|
out := model.LabelSet{}
|
2015-04-28 22:08:58 +00:00
|
|
|
for ln, lv := range labels {
|
|
|
|
out[ln] = lv
|
|
|
|
}
|
|
|
|
for _, cfg := range cfgs {
|
2016-08-09 10:36:23 +00:00
|
|
|
if out = relabel(out, cfg); out == nil {
|
|
|
|
return nil
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
|
|
|
}
|
2016-08-09 10:36:23 +00:00
|
|
|
return out
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
|
|
|
|
2016-08-09 10:36:23 +00:00
|
|
|
func relabel(labels model.LabelSet, cfg *config.RelabelConfig) model.LabelSet {
|
2015-05-07 08:55:03 +00:00
|
|
|
values := make([]string, 0, len(cfg.SourceLabels))
|
|
|
|
for _, ln := range cfg.SourceLabels {
|
|
|
|
values = append(values, string(labels[ln]))
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2015-05-07 08:55:03 +00:00
|
|
|
val := strings.Join(values, cfg.Separator)
|
2015-04-28 22:08:58 +00:00
|
|
|
|
2015-05-07 08:55:03 +00:00
|
|
|
switch cfg.Action {
|
|
|
|
case config.RelabelDrop:
|
|
|
|
if cfg.Regex.MatchString(val) {
|
2016-08-09 10:36:23 +00:00
|
|
|
return nil
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2015-05-07 08:55:03 +00:00
|
|
|
case config.RelabelKeep:
|
|
|
|
if !cfg.Regex.MatchString(val) {
|
2016-08-09 10:36:23 +00:00
|
|
|
return nil
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2015-05-07 08:55:03 +00:00
|
|
|
case config.RelabelReplace:
|
2015-08-16 22:39:39 +00:00
|
|
|
indexes := cfg.Regex.FindStringSubmatchIndex(val)
|
2015-04-28 22:08:58 +00:00
|
|
|
// If there is no match no replacement must take place.
|
2015-08-16 22:39:39 +00:00
|
|
|
if indexes == nil {
|
2015-04-28 22:08:58 +00:00
|
|
|
break
|
|
|
|
}
|
2015-08-16 22:39:39 +00:00
|
|
|
res := cfg.Regex.ExpandString([]byte{}, cfg.Replacement, val, indexes)
|
|
|
|
if len(res) == 0 {
|
2015-05-07 08:55:03 +00:00
|
|
|
delete(labels, cfg.TargetLabel)
|
2015-04-28 22:08:58 +00:00
|
|
|
} else {
|
2015-08-20 15:18:46 +00:00
|
|
|
labels[cfg.TargetLabel] = model.LabelValue(res)
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2015-06-24 07:07:17 +00:00
|
|
|
case config.RelabelHashMod:
|
2015-08-12 14:44:42 +00:00
|
|
|
mod := sum64(md5.Sum([]byte(val))) % cfg.Modulus
|
2015-08-20 15:18:46 +00:00
|
|
|
labels[cfg.TargetLabel] = model.LabelValue(fmt.Sprintf("%d", mod))
|
2015-08-12 09:21:20 +00:00
|
|
|
case config.RelabelLabelMap:
|
2015-08-20 15:18:46 +00:00
|
|
|
out := make(model.LabelSet, len(labels))
|
2015-08-12 09:21:20 +00:00
|
|
|
// Take a copy to avoid infinite loops.
|
|
|
|
for ln, lv := range labels {
|
|
|
|
out[ln] = lv
|
|
|
|
}
|
|
|
|
for ln, lv := range labels {
|
|
|
|
if cfg.Regex.MatchString(string(ln)) {
|
|
|
|
res := cfg.Regex.ReplaceAllString(string(ln), cfg.Replacement)
|
2015-08-20 15:18:46 +00:00
|
|
|
out[model.LabelName(res)] = lv
|
2015-08-12 09:21:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
labels = out
|
2015-04-28 22:08:58 +00:00
|
|
|
default:
|
2015-05-07 08:55:03 +00:00
|
|
|
panic(fmt.Errorf("retrieval.relabel: unknown relabel action type %q", cfg.Action))
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2016-08-09 10:36:23 +00:00
|
|
|
return labels
|
2015-04-28 22:08:58 +00:00
|
|
|
}
|
2015-08-12 14:44:42 +00:00
|
|
|
|
|
|
|
// sum64 sums the md5 hash to an uint64.
|
|
|
|
func sum64(hash [md5.Size]byte) uint64 {
|
|
|
|
var s uint64
|
|
|
|
|
|
|
|
for i, b := range hash {
|
|
|
|
shift := uint64((md5.Size - i - 1) * 8)
|
|
|
|
|
|
|
|
s |= uint64(b) << shift
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|