(b *testing.B)
| 913 | } |
| 914 | |
| 915 | func BenchmarkMetricVecWithLabelValuesBasic(b *testing.B) { |
| 916 | benchmarkMetricVecWithLabelValues(b, map[string][]string{ |
| 917 | "l1": {"onevalue"}, |
| 918 | "l2": {"twovalue"}, |
| 919 | }) |
| 920 | } |
| 921 | |
| 922 | func BenchmarkMetricVecWithLabelValues2Keys10ValueCardinality(b *testing.B) { |
| 923 | benchmarkMetricVecWithLabelValuesCardinality(b, 2, 10) |
nothing calls this directly
no test coverage detected