From 0ff0e7d04a863fa63d6ffc0d399a7cbac1e76f94 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Mon, 29 Sep 2025 14:33:17 +0200 Subject: [PATCH] dnsdist: Fix typo spotted by Miod Signed-off-by: Remi Gacogne --- pdns/dnsdistdist/dnsdist-web.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pdns/dnsdistdist/dnsdist-web.cc b/pdns/dnsdistdist/dnsdist-web.cc index c04cf8cb8..d7a91e60b 100644 --- a/pdns/dnsdistdist/dnsdist-web.cc +++ b/pdns/dnsdistdist/dnsdist-web.cc @@ -612,7 +612,7 @@ static void handlePrometheus(const YaHTTP::Request& req, YaHTTP::Response& resp) output << "# TYPE " << statesbase << "healthcheckfailuresmismatch " << "counter" << "\n"; output << "# HELP " << statesbase << "healthcheckfailuresinvalid " << "Number of health check attempts where the DNS response was invalid" << "\n"; output << "# TYPE " << statesbase << "healthcheckfailuresinvalid " << "counter" << "\n"; - output << "# HELP " << statesbase << "healthchecklatency " << "Latency of the last successfull health check attempt, in milliseconds" << "\n"; + output << "# HELP " << statesbase << "healthchecklatency " << "Latency of the last successful health check attempt, in milliseconds" << "\n"; output << "# TYPE " << statesbase << "healthchecklatency " << "gauge" << "\n"; for (const auto& state : dnsdist::configuration::getCurrentRuntimeConfiguration().d_backends) { -- 2.47.3