From: Remi Gacogne Date: Thu, 3 Oct 2019 15:29:39 +0000 (+0200) Subject: dnsdist: Fix a typo in the prometheus description of 'senderrors' X-Git-Tag: dnsdist-1.4.0-rc4~45^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F8378%2Fhead;p=thirdparty%2Fpdns.git dnsdist: Fix a typo in the prometheus description of 'senderrors' --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index e081e007b2..2f9b0096ea 100644 --- a/pdns/dnsdist-web.cc +++ b/pdns/dnsdist-web.cc @@ -475,7 +475,7 @@ static void connectionThread(int sock, ComboAddress remote) output << "# TYPE " << statesbase << "drops " << "counter" << "\n"; output << "# HELP " << statesbase << "latency " << "Server's latency when answering questions in milliseconds" << "\n"; output << "# TYPE " << statesbase << "latency " << "gauge" << "\n"; - output << "# HELP " << statesbase << "senderrors " << "Total number of OS snd errors while relaying queries" << "\n"; + output << "# HELP " << statesbase << "senderrors " << "Total number of OS send errors while relaying queries" << "\n"; output << "# TYPE " << statesbase << "senderrors " << "counter" << "\n"; output << "# HELP " << statesbase << "outstanding " << "Current number of queries that are waiting for a backend response" << "\n"; output << "# TYPE " << statesbase << "outstanding " << "gauge" << "\n";