From: Pieter Lexis Date: Fri, 1 May 2020 16:16:46 +0000 (+0200) Subject: dnsdist: add the unit to the help for latency buckets X-Git-Tag: dnsdist-1.5.0-rc2~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=e651298656285f05ea162d9230a49b5867326a4d;p=thirdparty%2Fpdns.git dnsdist: add the unit to the help for latency buckets --- diff --git a/pdns/dnsdist-web.cc b/pdns/dnsdist-web.cc index 797a5730f4..7347e448e5 100644 --- a/pdns/dnsdist-web.cc +++ b/pdns/dnsdist-web.cc @@ -500,7 +500,7 @@ static void connectionThread(int sock, ComboAddress remote) } // Latency histogram buckets - output << "# HELP dnsdist_latency Histogram of responses by latency\n"; + output << "# HELP dnsdist_latency Histogram of responses by latency (in miliseconds)\n"; output << "# TYPE dnsdist_latency histogram\n"; uint64_t latency_amounts = g_stats.latency0_1; output << "dnsdist_latency_bucket{le=\"1\"} " << latency_amounts << "\n";