]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
dnsdist: Fix typo spotted by Miod
authorRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 29 Sep 2025 12:33:17 +0000 (14:33 +0200)
committerRemi Gacogne <remi.gacogne@powerdns.com>
Mon, 29 Sep 2025 12:33:17 +0000 (14:33 +0200)
Signed-off-by: Remi Gacogne <remi.gacogne@powerdns.com>
pdns/dnsdistdist/dnsdist-web.cc

index c04cf8cb8c51458e90356d77077de0b5d373ef7c..d7a91e60b4deb14f7364acba2facfe204a005eaf 100644 (file)
@@ -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) {