Skip to content

Commit

Permalink
Search for new metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
pgporada committed Jan 29, 2024
1 parent 677514f commit 0170f3b
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}
Expand Down

0 comments on commit 0170f3b

Please sign in to comment.