From: Remi Gacogne Date: Mon, 29 Sep 2025 12:33:17 +0000 (+0200) Subject: dnsdist: Fix typo spotted by Miod X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0ff0e7d04a863fa63d6ffc0d399a7cbac1e76f94;p=thirdparty%2Fpdns.git dnsdist: Fix typo spotted by Miod Signed-off-by: Remi Gacogne --- 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) {