From b53e1663f22e787fc7b7f84d0cc964613f468bc2 Mon Sep 17 00:00:00 2001 From: Remi Gacogne Date: Wed, 2 Oct 2019 10:45:07 +0200 Subject: [PATCH] dnsdist: Fix a typo in 'tcpdownstreamtimeouts' prometheus description --- pdns/dnsdist-web.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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"; -- 2.40.0