Browse Source

Merge pull request #982 from miekg/hashmod-md5

Make HashMod use md5 instead of fnv
pull/905/head
Brian Brazil 9 years ago
parent
commit
697347ffaf
  1. 18
      retrieval/relabel.go
  2. 2
      retrieval/relabel_test.go

18
retrieval/relabel.go

@ -1,8 +1,8 @@
package retrieval
import (
"crypto/md5"
"fmt"
"hash/fnv"
"strings"
clientmodel "github.com/prometheus/client_golang/model"
@ -58,12 +58,22 @@ func relabel(labels clientmodel.LabelSet, cfg *config.RelabelConfig) (clientmode
labels[cfg.TargetLabel] = clientmodel.LabelValue(res)
}
case config.RelabelHashMod:
hasher := fnv.New64a()
hasher.Write([]byte(val))
mod := hasher.Sum64() % cfg.Modulus
mod := sum64(md5.Sum([]byte(val))) % cfg.Modulus
labels[cfg.TargetLabel] = clientmodel.LabelValue(fmt.Sprintf("%d", mod))
default:
panic(fmt.Errorf("retrieval.relabel: unknown relabel action type %q", cfg.Action))
}
return labels, nil
}
// 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
}

2
retrieval/relabel_test.go

@ -170,7 +170,7 @@ func TestRelabel(t *testing.T) {
"a": "foo",
"b": "bar",
"c": "baz",
"d": "58",
"d": "976",
},
},
}

Loading…
Cancel
Save