2013-02-08 17:03:26 +00:00
|
|
|
// Copyright 2013 Prometheus Team
|
|
|
|
// 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 metric
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
"time"
|
2013-06-25 12:02:27 +00:00
|
|
|
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/utility/test"
|
2013-02-08 17:03:26 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func GetFingerprintsForLabelSetTests(p MetricPersistence, t test.Tester) {
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "my_metric",
|
|
|
|
"request_type": "your_mom",
|
2013-02-08 17:03:26 +00:00
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "my_metric",
|
|
|
|
"request_type": "your_dad",
|
2013-02-08 17:03:26 +00:00
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
result, err := p.GetFingerprintsForLabelSet(clientmodel.LabelSet{
|
|
|
|
clientmodel.MetricNameLabel: clientmodel.LabelValue("my_metric"),
|
2013-02-08 17:03:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 2 {
|
|
|
|
t.Errorf("Expected two elements.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelSet(clientmodel.LabelSet{
|
|
|
|
clientmodel.LabelName("request_type"): clientmodel.LabelValue("your_mom"),
|
2013-02-08 17:03:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelSet(clientmodel.LabelSet{
|
|
|
|
clientmodel.LabelName("request_type"): clientmodel.LabelValue("your_dad"),
|
2013-02-08 17:03:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetFingerprintsForLabelNameTests(p MetricPersistence, t test.Tester) {
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "my_metric",
|
|
|
|
"request_type": "your_mom",
|
|
|
|
"language": "english",
|
2013-02-08 17:03:26 +00:00
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "my_metric",
|
|
|
|
"request_type": "your_dad",
|
|
|
|
"sprache": "deutsch",
|
2013-02-08 17:03:26 +00:00
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
b := clientmodel.MetricNameLabel
|
2013-02-08 17:03:26 +00:00
|
|
|
result, err := p.GetFingerprintsForLabelName(b)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 2 {
|
|
|
|
t.Errorf("Expected two elements.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
b = clientmodel.LabelName("request_type")
|
2013-02-08 17:03:26 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelName(b)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 2 {
|
|
|
|
t.Errorf("Expected two elements.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
b = clientmodel.LabelName("language")
|
2013-02-08 17:03:26 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelName(b)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
b = clientmodel.LabelName("sprache")
|
2013-02-08 17:03:26 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelName(b)
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func GetMetricForFingerprintTests(p MetricPersistence, t test.Tester) {
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
2013-02-08 17:03:26 +00:00
|
|
|
"request_type": "your_mom",
|
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
2013-02-08 17:03:26 +00:00
|
|
|
Value: 0,
|
|
|
|
Timestamp: time.Time{},
|
2013-06-25 12:02:27 +00:00
|
|
|
Metric: clientmodel.Metric{
|
2013-02-08 17:03:26 +00:00
|
|
|
"request_type": "your_dad",
|
|
|
|
"one-off": "value",
|
|
|
|
},
|
|
|
|
}, t)
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
result, err := p.GetFingerprintsForLabelSet(clientmodel.LabelSet{
|
|
|
|
clientmodel.LabelName("request_type"): clientmodel.LabelValue("your_mom"),
|
2013-02-08 17:03:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
metric, err := p.GetMetricForFingerprint(result[0])
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
if metric == nil {
|
2013-02-08 17:03:26 +00:00
|
|
|
t.Fatal("Did not expect nil.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(metric) != 1 {
|
|
|
|
t.Errorf("Expected one-dimensional metric.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if metric["request_type"] != "your_mom" {
|
|
|
|
t.Errorf("Expected metric to match.")
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
result, err = p.GetFingerprintsForLabelSet(clientmodel.LabelSet{
|
|
|
|
clientmodel.LabelName("request_type"): clientmodel.LabelValue("your_dad"),
|
2013-02-08 17:03:26 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(result) != 1 {
|
|
|
|
t.Errorf("Expected one element.")
|
|
|
|
}
|
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
metric, err = p.GetMetricForFingerprint(result[0])
|
2013-02-08 17:03:26 +00:00
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
if metric == nil {
|
2013-02-08 17:03:26 +00:00
|
|
|
t.Fatal("Did not expect nil.")
|
|
|
|
}
|
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(metric) != 2 {
|
|
|
|
t.Errorf("Expected two-dimensional metric.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if metric["request_type"] != "your_dad" {
|
|
|
|
t.Errorf("Expected metric to match.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if metric["one-off"] != "value" {
|
|
|
|
t.Errorf("Expected metric to match.")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Verify that mutating a returned metric does not result in the mutated
|
|
|
|
// metric to be returned at the next GetMetricForFingerprint() call.
|
|
|
|
metric["one-off"] = "new value"
|
|
|
|
metric, err = p.GetMetricForFingerprint(result[0])
|
2013-02-08 17:03:26 +00:00
|
|
|
|
2013-05-14 14:25:06 +00:00
|
|
|
if metric == nil {
|
|
|
|
t.Fatal("Did not expect nil.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if err != nil {
|
|
|
|
t.Error(err)
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if len(metric) != 2 {
|
2013-05-14 14:25:06 +00:00
|
|
|
t.Errorf("Expected two-dimensional metric.")
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if metric["request_type"] != "your_dad" {
|
|
|
|
t.Errorf("Expected metric to match.")
|
|
|
|
}
|
|
|
|
|
|
|
|
if metric["one-off"] != "value" {
|
|
|
|
t.Errorf("Expected metric to match.")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AppendRepeatingValuesTests(p MetricPersistence, t test.Tester) {
|
2013-06-25 12:02:27 +00:00
|
|
|
metric := clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "errors_total",
|
|
|
|
"controller": "foo",
|
|
|
|
"operation": "bar",
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
increments := 10
|
|
|
|
repetitions := 500
|
|
|
|
|
|
|
|
for i := 0; i < increments; i++ {
|
|
|
|
for j := 0; j < repetitions; j++ {
|
|
|
|
time := time.Time{}.Add(time.Duration(i) * time.Hour).Add(time.Duration(j) * time.Second)
|
2013-06-25 12:02:27 +00:00
|
|
|
testAppendSample(p, &clientmodel.Sample{
|
|
|
|
Value: clientmodel.SampleValue(i),
|
2013-02-08 17:03:26 +00:00
|
|
|
Timestamp: time,
|
|
|
|
Metric: metric,
|
|
|
|
}, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if true {
|
|
|
|
// XXX: Purely a benchmark.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
labelSet := clientmodel.LabelSet{
|
|
|
|
clientmodel.MetricNameLabel: "errors_total",
|
|
|
|
"controller": "foo",
|
|
|
|
"operation": "bar",
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < increments; i++ {
|
|
|
|
for j := 0; j < repetitions; j++ {
|
|
|
|
fingerprints, err := p.GetFingerprintsForLabelSet(labelSet)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(fingerprints) != 1 {
|
|
|
|
t.Fatalf("expected %d fingerprints, got %d", 1, len(fingerprints))
|
|
|
|
}
|
|
|
|
|
|
|
|
time := time.Time{}.Add(time.Duration(i) * time.Hour).Add(time.Duration(j) * time.Second)
|
2013-04-18 14:10:52 +00:00
|
|
|
samples := p.GetValueAtTime(fingerprints[0], time)
|
|
|
|
if len(samples) == 0 {
|
|
|
|
t.Fatal("expected at least one sample.")
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
expected := clientmodel.SampleValue(i)
|
2013-02-08 17:03:26 +00:00
|
|
|
|
2013-04-18 14:10:52 +00:00
|
|
|
for _, sample := range samples {
|
|
|
|
if sample.Value != expected {
|
|
|
|
t.Fatalf("expected %d value, got %d", expected, sample.Value)
|
|
|
|
}
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func AppendsRepeatingValuesTests(p MetricPersistence, t test.Tester) {
|
2013-06-25 12:02:27 +00:00
|
|
|
metric := clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "errors_total",
|
|
|
|
"controller": "foo",
|
|
|
|
"operation": "bar",
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
increments := 10
|
|
|
|
repetitions := 500
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
s := clientmodel.Samples{}
|
2013-02-08 17:03:26 +00:00
|
|
|
for i := 0; i < increments; i++ {
|
|
|
|
for j := 0; j < repetitions; j++ {
|
|
|
|
time := time.Time{}.Add(time.Duration(i) * time.Hour).Add(time.Duration(j) * time.Second)
|
2013-06-25 12:02:27 +00:00
|
|
|
s = append(s, &clientmodel.Sample{
|
|
|
|
Value: clientmodel.SampleValue(i),
|
2013-02-08 17:03:26 +00:00
|
|
|
Timestamp: time,
|
|
|
|
Metric: metric,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
p.AppendSamples(s)
|
|
|
|
|
|
|
|
if true {
|
|
|
|
// XXX: Purely a benchmark.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
labelSet := clientmodel.LabelSet{
|
|
|
|
clientmodel.MetricNameLabel: "errors_total",
|
|
|
|
"controller": "foo",
|
|
|
|
"operation": "bar",
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for i := 0; i < increments; i++ {
|
|
|
|
for j := 0; j < repetitions; j++ {
|
|
|
|
fingerprints, err := p.GetFingerprintsForLabelSet(labelSet)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
if len(fingerprints) != 1 {
|
|
|
|
t.Fatalf("expected %d fingerprints, got %d", 1, len(fingerprints))
|
|
|
|
}
|
|
|
|
|
|
|
|
time := time.Time{}.Add(time.Duration(i) * time.Hour).Add(time.Duration(j) * time.Second)
|
2013-04-18 14:10:52 +00:00
|
|
|
samples := p.GetValueAtTime(fingerprints[0], time)
|
|
|
|
if len(samples) == 0 {
|
|
|
|
t.Fatal("expected at least one sample.")
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
|
2013-06-25 12:02:27 +00:00
|
|
|
expected := clientmodel.SampleValue(i)
|
2013-02-08 17:03:26 +00:00
|
|
|
|
2013-04-18 14:10:52 +00:00
|
|
|
for _, sample := range samples {
|
|
|
|
if sample.Value != expected {
|
|
|
|
t.Fatalf("expected %d value, got %d", expected, sample.Value)
|
|
|
|
}
|
2013-02-08 17:03:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Test Definitions Below
|
|
|
|
|
|
|
|
var testLevelDBGetFingerprintsForLabelSet = buildLevelDBTestPersistence("get_fingerprints_for_labelset", GetFingerprintsForLabelSetTests)
|
|
|
|
|
|
|
|
func TestLevelDBGetFingerprintsForLabelSet(t *testing.T) {
|
|
|
|
testLevelDBGetFingerprintsForLabelSet(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLevelDBGetFingerprintsForLabelSet(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testLevelDBGetFingerprintsForLabelSet(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testLevelDBGetFingerprintsForLabelName = buildLevelDBTestPersistence("get_fingerprints_for_labelname", GetFingerprintsForLabelNameTests)
|
|
|
|
|
|
|
|
func TestLevelDBGetFingerprintsForLabelName(t *testing.T) {
|
|
|
|
testLevelDBGetFingerprintsForLabelName(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLevelDBGetFingerprintsForLabelName(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testLevelDBGetFingerprintsForLabelName(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testLevelDBGetMetricForFingerprint = buildLevelDBTestPersistence("get_metric_for_fingerprint", GetMetricForFingerprintTests)
|
|
|
|
|
|
|
|
func TestLevelDBGetMetricForFingerprint(t *testing.T) {
|
|
|
|
testLevelDBGetMetricForFingerprint(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLevelDBGetMetricForFingerprint(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testLevelDBGetMetricForFingerprint(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testLevelDBAppendRepeatingValues = buildLevelDBTestPersistence("append_repeating_values", AppendRepeatingValuesTests)
|
|
|
|
|
|
|
|
func TestLevelDBAppendRepeatingValues(t *testing.T) {
|
|
|
|
testLevelDBAppendRepeatingValues(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLevelDBAppendRepeatingValues(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testLevelDBAppendRepeatingValues(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testLevelDBAppendsRepeatingValues = buildLevelDBTestPersistence("appends_repeating_values", AppendsRepeatingValuesTests)
|
|
|
|
|
|
|
|
func TestLevelDBAppendsRepeatingValues(t *testing.T) {
|
|
|
|
testLevelDBAppendsRepeatingValues(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLevelDBAppendsRepeatingValues(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testLevelDBAppendsRepeatingValues(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testMemoryGetFingerprintsForLabelSet = buildMemoryTestPersistence(GetFingerprintsForLabelSetTests)
|
|
|
|
|
|
|
|
func TestMemoryGetFingerprintsForLabelSet(t *testing.T) {
|
|
|
|
testMemoryGetFingerprintsForLabelSet(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMemoryGetFingerprintsForLabelSet(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testMemoryGetFingerprintsForLabelSet(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testMemoryGetFingerprintsForLabelName = buildMemoryTestPersistence(GetFingerprintsForLabelNameTests)
|
|
|
|
|
|
|
|
func TestMemoryGetFingerprintsForLabelName(t *testing.T) {
|
|
|
|
testMemoryGetFingerprintsForLabelName(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMemoryGetFingerprintsForLabelName(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testMemoryGetFingerprintsForLabelName(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testMemoryGetMetricForFingerprint = buildMemoryTestPersistence(GetMetricForFingerprintTests)
|
|
|
|
|
|
|
|
func TestMemoryGetMetricForFingerprint(t *testing.T) {
|
|
|
|
testMemoryGetMetricForFingerprint(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMemoryGetMetricForFingerprint(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testMemoryGetMetricForFingerprint(b)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var testMemoryAppendRepeatingValues = buildMemoryTestPersistence(AppendRepeatingValuesTests)
|
|
|
|
|
|
|
|
func TestMemoryAppendRepeatingValues(t *testing.T) {
|
|
|
|
testMemoryAppendRepeatingValues(t)
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMemoryAppendRepeatingValues(b *testing.B) {
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
testMemoryAppendRepeatingValues(b)
|
|
|
|
}
|
|
|
|
}
|