From 78a3a01ed6422c608a6fbb6ac0510449bd369043 Mon Sep 17 00:00:00 2001 From: Mahip Deora Date: Thu, 28 May 2026 12:32:03 -0500 Subject: [PATCH] [coredns] [coredns] Add coredns_health_request_failures_total metric --- coredns/datadog_checks/coredns/metrics.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/coredns/datadog_checks/coredns/metrics.py b/coredns/datadog_checks/coredns/metrics.py index b0e05b9446d0f..d3b3191f5628c 100644 --- a/coredns/datadog_checks/coredns/metrics.py +++ b/coredns/datadog_checks/coredns/metrics.py @@ -35,6 +35,7 @@ 'coredns_grpc_response_rcode_count_total': 'grpc.response_rcode_count', # health: https://github.com/coredns/coredns/tree/v1.6.9/plugin/health 'coredns_health_request_duration_seconds': 'health_request_duration', + 'coredns_health_request_failures_total': 'health_request_failures', # hosts: https://github.com/coredns/coredns/tree/v1.6.9/plugin/hosts 'coredns_hosts_entries_count': 'hosts.entries_count', 'coredns_hosts_reload_timestamp_seconds': 'hosts.reload_timestamp', @@ -84,6 +85,8 @@ # grpc: https://github.com/coredns/coredns/tree/v1.7.0/plugin/grpc 'coredns_grpc_requests_total': 'grpc.request_count', 'coredns_grpc_responses_total': 'grpc.response_rcode_count', + # health: https://github.com/coredns/coredns/tree/v1.7.0/plugin/health + 'coredns_health_request_failures_total': 'health_request_failures', # hosts: https://github.com/coredns/coredns/tree/v1.7.0/plugin/hosts 'coredns_hosts_entries': 'hosts.entries_count', # metrics: https://github.com/coredns/coredns/tree/v1.7.0/plugin/metrics