From 0170f3b6c9ed98974d62af7c861b594b16d66bcb Mon Sep 17 00:00:00 2001 From: Phil Porada Date: Mon, 29 Jan 2024 16:34:56 -0500 Subject: [PATCH] Search for new metrics --- integration_test.go | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/integration_test.go b/integration_test.go index f0530ef..f9c604e 100644 --- a/integration_test.go +++ b/integration_test.go @@ -44,7 +44,14 @@ func TestIntegration(t *testing.T) { } // Check some expected metrics are present - for _, metric := range []string{"go_info", "unbound_queries_total", "unbound_response_time_seconds", "unbound_cache_hits_total"} { + for _, metric := range []string{ + "go_info", + "unbound_queries_total", + "unbound_response_time_seconds", + "unbound_cache_hits_total", + "unbound_query_https_total", + "unbound_memory_doh_bytes", + } { if _, ok := metrics[metric]; !ok { t.Errorf("Expected metric is missing: %s", metric) }