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: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=84480ee3a58c7babb0a6b8fde2c842e9c067ef68;p=pdns dnsdist: Fix a typo in the prometheus description of 'senderrors' --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index e081e007b..2f9b0096e 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";