(t testing.TB, metrics []*dto.MetricFamily, value float64, name string, labels ...string)
| 20 | } |
| 21 | |
| 22 | func PromCounterHasValue(t testing.TB, metrics []*dto.MetricFamily, value float64, name string, labels ...string) bool { |
| 23 | t.Helper() |
| 24 | return value == getValue(t, metrics, counterKind, name, labels...) |
| 25 | } |
| 26 | |
| 27 | func PromGaugeAssertion(t testing.TB, metrics []*dto.MetricFamily, assert func(in float64) bool, name string, labels ...string) bool { |
| 28 | t.Helper() |