2015-02-02 17:14:36 +03:00
|
|
|
// Copyright 2014 The Prometheus Authors
|
2014-05-07 22:08:33 +04:00
|
|
|
// 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.
|
|
|
|
|
|
|
|
package prometheus
|
|
|
|
|
|
|
|
import (
|
2016-08-11 06:03:15 +03:00
|
|
|
"fmt"
|
2014-05-07 22:08:33 +04:00
|
|
|
"testing"
|
2016-08-13 02:20:05 +03:00
|
|
|
|
|
|
|
dto "github.com/prometheus/client_model/go"
|
2014-05-07 22:08:33 +04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestDelete(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-13 02:20:05 +03:00
|
|
|
testDelete(t, vec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeleteWithCollisions(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-13 02:20:05 +03:00
|
|
|
vec.hashAdd = func(h uint64, s string) uint64 { return 1 }
|
|
|
|
vec.hashAddByte = func(h uint64, b byte) uint64 { return 1 }
|
|
|
|
testDelete(t, vec)
|
|
|
|
}
|
2014-05-07 22:08:33 +04:00
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
func testDelete(t *testing.T, vec *GaugeVec) {
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.Delete(Labels{"l1": "v1", "l2": "v2"}), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v2"}).(Gauge).Set(42)
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.Delete(Labels{"l1": "v1", "l2": "v2"}), true; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
if got, want := vec.Delete(Labels{"l1": "v1", "l2": "v2"}), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v2"}).(Gauge).Set(42)
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.Delete(Labels{"l2": "v2", "l1": "v1"}), true; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
if got, want := vec.Delete(Labels{"l2": "v2", "l1": "v1"}), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v2"}).(Gauge).Set(42)
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.Delete(Labels{"l2": "v1", "l1": "v2"}), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
if got, want := vec.Delete(Labels{"l1": "v1"}), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeleteLabelValues(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-12 03:06:03 +03:00
|
|
|
testDeleteLabelValues(t, vec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDeleteLabelValuesWithCollisions(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-12 03:06:03 +03:00
|
|
|
vec.hashAdd = func(h uint64, s string) uint64 { return 1 }
|
2016-08-13 02:20:05 +03:00
|
|
|
vec.hashAddByte = func(h uint64, b byte) uint64 { return 1 }
|
2016-08-12 03:06:03 +03:00
|
|
|
testDeleteLabelValues(t, vec)
|
|
|
|
}
|
2014-05-07 22:08:33 +04:00
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
func testDeleteLabelValues(t *testing.T, vec *GaugeVec) {
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.DeleteLabelValues("v1", "v2"), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v2"}).(Gauge).Set(42)
|
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v3"}).(Gauge).Set(42) // Add junk data for collision.
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.DeleteLabelValues("v1", "v2"), true; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
if got, want := vec.DeleteLabelValues("v1", "v2"), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
2016-08-13 02:20:05 +03:00
|
|
|
if got, want := vec.DeleteLabelValues("v1", "v3"), true; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
2014-05-07 22:08:33 +04:00
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.With(Labels{"l1": "v1", "l2": "v2"}).(Gauge).Set(42)
|
2016-08-17 13:19:50 +03:00
|
|
|
// Delete out of order.
|
2014-05-07 22:08:33 +04:00
|
|
|
if got, want := vec.DeleteLabelValues("v2", "v1"), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
if got, want := vec.DeleteLabelValues("v1"), false; got != want {
|
|
|
|
t.Errorf("got %v, want %v", got, want)
|
|
|
|
}
|
|
|
|
}
|
2016-08-11 06:03:15 +03:00
|
|
|
|
2016-08-13 02:20:05 +03:00
|
|
|
func TestMetricVec(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-13 02:20:05 +03:00
|
|
|
testMetricVec(t, vec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestMetricVecWithCollisions(t *testing.T) {
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"l1", "l2"},
|
|
|
|
)
|
2016-08-13 02:20:05 +03:00
|
|
|
vec.hashAdd = func(h uint64, s string) uint64 { return 1 }
|
|
|
|
vec.hashAddByte = func(h uint64, b byte) uint64 { return 1 }
|
|
|
|
testMetricVec(t, vec)
|
|
|
|
}
|
|
|
|
|
2017-08-29 18:31:45 +03:00
|
|
|
func testMetricVec(t *testing.T, vec *GaugeVec) {
|
2016-08-17 13:19:50 +03:00
|
|
|
vec.Reset() // Actually test Reset now!
|
2016-08-13 02:20:05 +03:00
|
|
|
|
|
|
|
var pair [2]string
|
2016-08-17 13:19:50 +03:00
|
|
|
// Keep track of metrics.
|
2016-08-13 02:20:05 +03:00
|
|
|
expected := map[[2]string]int{}
|
|
|
|
|
|
|
|
for i := 0; i < 1000; i++ {
|
2016-08-17 13:19:50 +03:00
|
|
|
pair[0], pair[1] = fmt.Sprint(i%4), fmt.Sprint(i%5) // Varying combinations multiples.
|
2016-08-13 02:20:05 +03:00
|
|
|
expected[pair]++
|
2016-08-17 13:19:50 +03:00
|
|
|
vec.WithLabelValues(pair[0], pair[1]).Inc()
|
2016-08-13 02:20:05 +03:00
|
|
|
|
|
|
|
expected[[2]string{"v1", "v2"}]++
|
2017-08-29 18:31:45 +03:00
|
|
|
vec.WithLabelValues("v1", "v2").(Gauge).Inc()
|
2016-08-13 02:20:05 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var total int
|
2017-08-30 02:05:29 +03:00
|
|
|
for _, metrics := range vec.metricMap.metrics {
|
2016-08-13 02:20:05 +03:00
|
|
|
for _, metric := range metrics {
|
|
|
|
total++
|
|
|
|
copy(pair[:], metric.values)
|
|
|
|
|
|
|
|
var metricOut dto.Metric
|
2016-08-17 13:19:50 +03:00
|
|
|
if err := metric.metric.Write(&metricOut); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2017-08-29 18:31:45 +03:00
|
|
|
actual := *metricOut.Gauge.Value
|
2016-08-13 02:20:05 +03:00
|
|
|
|
|
|
|
var actualPair [2]string
|
|
|
|
for i, label := range metricOut.Label {
|
|
|
|
actualPair[i] = *label.Value
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
// Test output pair against metric.values to ensure we've selected
|
2016-08-13 02:20:05 +03:00
|
|
|
// the right one. We check this to ensure the below check means
|
|
|
|
// anything at all.
|
|
|
|
if actualPair != pair {
|
|
|
|
t.Fatalf("unexpected pair association in metric map: %v != %v", actualPair, pair)
|
|
|
|
}
|
|
|
|
|
|
|
|
if actual != float64(expected[pair]) {
|
|
|
|
t.Fatalf("incorrect counter value for %v: %v != %v", pair, actual, expected[pair])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if total != len(expected) {
|
|
|
|
t.Fatalf("unexpected number of metrics: %v != %v", total, len(expected))
|
|
|
|
}
|
|
|
|
|
|
|
|
vec.Reset()
|
|
|
|
|
2017-08-30 02:05:29 +03:00
|
|
|
if len(vec.metricMap.metrics) > 0 {
|
2016-08-13 02:20:05 +03:00
|
|
|
t.Fatalf("reset failed")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func TestCounterVecEndToEndWithCollision(t *testing.T) {
|
|
|
|
vec := NewCounterVec(
|
|
|
|
CounterOpts{
|
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"labelname"},
|
|
|
|
)
|
|
|
|
vec.WithLabelValues("77kepQFQ8Kl").Inc()
|
|
|
|
vec.WithLabelValues("!0IC=VloaY").Add(2)
|
|
|
|
|
|
|
|
m := &dto.Metric{}
|
|
|
|
if err := vec.WithLabelValues("77kepQFQ8Kl").Write(m); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if got, want := m.GetLabel()[0].GetValue(), "77kepQFQ8Kl"; got != want {
|
|
|
|
t.Errorf("got label value %q, want %q", got, want)
|
|
|
|
}
|
|
|
|
if got, want := m.GetCounter().GetValue(), 1.; got != want {
|
2016-08-17 15:01:11 +03:00
|
|
|
t.Errorf("got value %f, want %f", got, want)
|
2016-08-17 13:19:50 +03:00
|
|
|
}
|
|
|
|
m.Reset()
|
|
|
|
if err := vec.WithLabelValues("!0IC=VloaY").Write(m); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if got, want := m.GetLabel()[0].GetValue(), "!0IC=VloaY"; got != want {
|
|
|
|
t.Errorf("got label value %q, want %q", got, want)
|
|
|
|
}
|
|
|
|
if got, want := m.GetCounter().GetValue(), 2.; got != want {
|
2016-08-17 15:01:11 +03:00
|
|
|
t.Errorf("got value %f, want %f", got, want)
|
2016-08-17 13:19:50 +03:00
|
|
|
}
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2017-08-30 02:05:29 +03:00
|
|
|
func TestCurryVec(t *testing.T) {
|
|
|
|
vec := NewCounterVec(
|
|
|
|
CounterOpts{
|
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"one", "two", "three"},
|
|
|
|
)
|
|
|
|
testCurryVec(t, vec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestCurryVecWithCollisions(t *testing.T) {
|
|
|
|
vec := NewCounterVec(
|
|
|
|
CounterOpts{
|
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
[]string{"one", "two", "three"},
|
|
|
|
)
|
|
|
|
vec.hashAdd = func(h uint64, s string) uint64 { return 1 }
|
|
|
|
vec.hashAddByte = func(h uint64, b byte) uint64 { return 1 }
|
|
|
|
testCurryVec(t, vec)
|
|
|
|
}
|
|
|
|
|
|
|
|
func testCurryVec(t *testing.T, vec *CounterVec) {
|
|
|
|
|
|
|
|
assertMetrics := func(t *testing.T) {
|
|
|
|
n := 0
|
|
|
|
for _, m := range vec.metricMap.metrics {
|
|
|
|
n += len(m)
|
|
|
|
}
|
|
|
|
if n != 2 {
|
|
|
|
t.Error("expected two metrics, got", n)
|
|
|
|
}
|
|
|
|
m := &dto.Metric{}
|
|
|
|
c1, err := vec.GetMetricWithLabelValues("1", "2", "3")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("unexpected error getting metric:", err)
|
|
|
|
}
|
|
|
|
c1.Write(m)
|
|
|
|
if want, got := 1., m.GetCounter().GetValue(); want != got {
|
|
|
|
t.Errorf("want %f as counter value, got %f", want, got)
|
|
|
|
}
|
|
|
|
m.Reset()
|
|
|
|
c2, err := vec.GetMetricWithLabelValues("11", "22", "33")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal("unexpected error getting metric:", err)
|
|
|
|
}
|
|
|
|
c2.Write(m)
|
|
|
|
if want, got := 1., m.GetCounter().GetValue(); want != got {
|
|
|
|
t.Errorf("want %f as counter value, got %f", want, got)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
assertNoMetric := func(t *testing.T) {
|
|
|
|
if n := len(vec.metricMap.metrics); n != 0 {
|
|
|
|
t.Error("expected no metrics, got", n)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("zero labels", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(nil)
|
|
|
|
c2 := vec.MustCurryWith(nil)
|
|
|
|
c1.WithLabelValues("1", "2", "3").Inc()
|
|
|
|
c2.With(Labels{"one": "11", "two": "22", "three": "33"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if !c1.Delete(Labels{"one": "1", "two": "2", "three": "3"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("11", "22", "33") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("first label", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"one": "1"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"one": "11"})
|
|
|
|
c1.WithLabelValues("2", "3").Inc()
|
|
|
|
c2.With(Labels{"two": "22", "three": "33"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if c1.Delete(Labels{"two": "22", "three": "33"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if c2.DeleteLabelValues("2", "3") {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"two": "2", "three": "3"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("22", "33") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("middle label", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"two": "2"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"two": "22"})
|
|
|
|
c1.WithLabelValues("1", "3").Inc()
|
|
|
|
c2.With(Labels{"one": "11", "three": "33"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if c1.Delete(Labels{"one": "11", "three": "33"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if c2.DeleteLabelValues("1", "3") {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"one": "1", "three": "3"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("11", "33") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("last label", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"three": "3"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"three": "33"})
|
|
|
|
c1.WithLabelValues("1", "2").Inc()
|
|
|
|
c2.With(Labels{"one": "11", "two": "22"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if c1.Delete(Labels{"two": "22", "one": "11"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if c2.DeleteLabelValues("1", "2") {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"two": "2", "one": "1"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("11", "22") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("two labels", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"three": "3", "one": "1"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"three": "33", "one": "11"})
|
|
|
|
c1.WithLabelValues("2").Inc()
|
|
|
|
c2.With(Labels{"two": "22"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if c1.Delete(Labels{"two": "22"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if c2.DeleteLabelValues("2") {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"two": "2"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("22") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("all labels", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"three": "3", "two": "2", "one": "1"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"three": "33", "one": "11", "two": "22"})
|
|
|
|
c1.WithLabelValues().Inc()
|
|
|
|
c2.With(nil).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if !c1.Delete(Labels{}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues() {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("double curry", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"three": "3"}).MustCurryWith(Labels{"one": "1"})
|
|
|
|
c2 := vec.MustCurryWith(Labels{"three": "33"}).MustCurryWith(Labels{"one": "11"})
|
|
|
|
c1.WithLabelValues("2").Inc()
|
|
|
|
c2.With(Labels{"two": "22"}).Inc()
|
|
|
|
assertMetrics(t)
|
|
|
|
if c1.Delete(Labels{"two": "22"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if c2.DeleteLabelValues("2") {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"two": "2"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
if !c2.DeleteLabelValues("22") {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("use already curried label", func(t *testing.T) {
|
|
|
|
c1 := vec.MustCurryWith(Labels{"three": "3"})
|
|
|
|
if _, err := c1.GetMetricWithLabelValues("1", "2", "3"); err == nil {
|
|
|
|
t.Error("expected error when using already curried label")
|
|
|
|
}
|
|
|
|
if _, err := c1.GetMetricWith(Labels{"one": "1", "two": "2", "three": "3"}); err == nil {
|
|
|
|
t.Error("expected error when using already curried label")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
c1.WithLabelValues("1", "2").Inc()
|
|
|
|
if c1.Delete(Labels{"one": "1", "two": "2", "three": "3"}) {
|
|
|
|
t.Error("deletion unexpectedly succeeded")
|
|
|
|
}
|
|
|
|
if !c1.Delete(Labels{"one": "1", "two": "2"}) {
|
|
|
|
t.Error("deletion failed")
|
|
|
|
}
|
|
|
|
assertNoMetric(t)
|
|
|
|
})
|
|
|
|
t.Run("curry already curried label", func(t *testing.T) {
|
|
|
|
if _, err := vec.MustCurryWith(Labels{"three": "3"}).CurryWith(Labels{"three": "33"}); err == nil {
|
|
|
|
t.Error("currying unexpectedly succeeded")
|
|
|
|
} else if err.Error() != `label name "three" is already curried` {
|
|
|
|
t.Error("currying returned unexpected error:", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
t.Run("unknown label", func(t *testing.T) {
|
|
|
|
if _, err := vec.CurryWith(Labels{"foo": "bar"}); err == nil {
|
|
|
|
t.Error("currying unexpectedly succeeded")
|
|
|
|
} else if err.Error() != "1 unknown label(s) found during currying" {
|
|
|
|
t.Error("currying returned unexpected error:", err)
|
|
|
|
}
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValuesBasic(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValues(b, map[string][]string{
|
2016-09-16 20:59:04 +03:00
|
|
|
"l1": {"onevalue"},
|
|
|
|
"l2": {"twovalue"},
|
2016-08-11 06:03:15 +03:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValues2Keys10ValueCardinality(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValuesCardinality(b, 2, 10)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValues4Keys10ValueCardinality(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValuesCardinality(b, 4, 10)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValues2Keys100ValueCardinality(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValuesCardinality(b, 2, 100)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValues10Keys100ValueCardinality(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValuesCardinality(b, 10, 100)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func BenchmarkMetricVecWithLabelValues10Keys1000ValueCardinality(b *testing.B) {
|
|
|
|
benchmarkMetricVecWithLabelValuesCardinality(b, 10, 1000)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func benchmarkMetricVecWithLabelValuesCardinality(b *testing.B, nkeys, nvalues int) {
|
2016-08-11 06:03:15 +03:00
|
|
|
labels := map[string][]string{}
|
|
|
|
|
|
|
|
for i := 0; i < nkeys; i++ {
|
|
|
|
var (
|
|
|
|
k = fmt.Sprintf("key-%v", i)
|
|
|
|
vs = make([]string, 0, nvalues)
|
|
|
|
)
|
|
|
|
for j := 0; j < nvalues; j++ {
|
|
|
|
vs = append(vs, fmt.Sprintf("value-%v", j))
|
|
|
|
}
|
|
|
|
labels[k] = vs
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
benchmarkMetricVecWithLabelValues(b, labels)
|
2016-08-11 06:03:15 +03:00
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
func benchmarkMetricVecWithLabelValues(b *testing.B, labels map[string][]string) {
|
2016-08-11 06:03:15 +03:00
|
|
|
var keys []string
|
2016-08-17 13:19:50 +03:00
|
|
|
for k := range labels { // Map order dependent, who cares though.
|
2016-08-11 06:03:15 +03:00
|
|
|
keys = append(keys, k)
|
|
|
|
}
|
|
|
|
|
2016-08-17 13:19:50 +03:00
|
|
|
values := make([]string, len(labels)) // Value cache for permutations.
|
2017-08-29 18:31:45 +03:00
|
|
|
vec := NewGaugeVec(
|
|
|
|
GaugeOpts{
|
2016-08-17 13:19:50 +03:00
|
|
|
Name: "test",
|
|
|
|
Help: "helpless",
|
|
|
|
},
|
|
|
|
keys,
|
|
|
|
)
|
|
|
|
|
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
// Varies input across provide map entries based on key size.
|
2016-08-11 06:03:15 +03:00
|
|
|
for j, k := range keys {
|
|
|
|
candidates := labels[k]
|
|
|
|
values[j] = candidates[i%len(candidates)]
|
|
|
|
}
|
|
|
|
|
|
|
|
vec.WithLabelValues(values...)
|
|
|
|
}
|
|
|
|
}
|