(t testing.TB, metrics []*dto.MetricFamily, name string, labels ...string)
| 40 | } |
| 41 | |
| 42 | func PromGaugeGathered(t testing.TB, metrics []*dto.MetricFamily, name string, labels ...string) bool { |
| 43 | t.Helper() |
| 44 | return getMetric(t, metrics, name, labels...) != nil |
| 45 | } |
| 46 | |
| 47 | func getValue(t testing.TB, metrics []*dto.MetricFamily, kind kind, name string, labels ...string) float64 { |
| 48 | m := getMetric(t, metrics, name, labels...) |