From: Remi Gacogne Date: Wed, 2 Oct 2019 08:45:07 +0000 (+0200) Subject: dnsdist: Fix a typo in 'tcpdownstreamtimeouts' prometheus description X-Git-Tag: dnsdist-1.4.0-rc4~49^2~2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b53e1663f22e787fc7b7f84d0cc964613f468bc2;p=pdns dnsdist: Fix a typo in 'tcpdownstreamtimeouts' prometheus description --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index 586547a2d..79091b4d7 100644 --- a/pdns/dnsdist-web.cc +++ b/pdns/dnsdist-web.cc @@ -544,8 +544,8 @@ static void connectionThread(int sock, ComboAddress remote) output << "# TYPE " << frontsbase << "tcpgaveup " << "counter" << "\n"; output << "# HELP " << frontsbase << "tcpclientimeouts " << "Amount of TCP connections terminated by a timeout while reading from the client" << "\n"; output << "# TYPE " << frontsbase << "tcpclientimeouts " << "counter" << "\n"; - output << "# HELP " << frontsbase << "tcpdownstreamimeouts " << "Amount of TCP connections terminated by a timeout while reading from the backend" << "\n"; - output << "# TYPE " << frontsbase << "tcpdownstreamimeouts " << "counter" << "\n"; + output << "# HELP " << frontsbase << "tcpdownstreamtimeouts " << "Amount of TCP connections terminated by a timeout while reading from the backend" << "\n"; + output << "# TYPE " << frontsbase << "tcpdownstreamtimeouts " << "counter" << "\n"; output << "# HELP " << frontsbase << "tcpcurrentconnections " << "Amount of current incoming TCP connections from clients" << "\n"; output << "# TYPE " << frontsbase << "tcpcurrentconnections " << "gauge" << "\n"; output << "# HELP " << frontsbase << "tcpavgqueriesperconnection " << "The average number of queries per TCP connection" << "\n";