From 4af91764f821d2d2d3e98f77c49ee765bb21bd83 Mon Sep 17 00:00:00 2001 From: Otto Date: Wed, 16 Jun 2021 09:27:01 +0200 Subject: [PATCH] rename cumulative counters to be better aligned with existing names --- pdns/syncres.hh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pdns/syncres.hh b/pdns/syncres.hh index e9c6ee1156..9396c315a1 100644 --- a/pdns/syncres.hh +++ b/pdns/syncres.hh @@ -1058,9 +1058,9 @@ struct RecursorStats auth4Answers("auth4answers", { 1000, 10000, 100000, 1000000 }), auth6Answers("auth6answers", { 1000, 10000, 100000, 1000000 }), ourtime("ourtime", { 1000, 2000, 4000, 8000, 16000, 32000 }), - cumulativeAnswers("cumulAnswers-", 10, 19), - cumulativeAuth4Answers("cumulAuth4Answers-", 1000, 13), - cumulativeAuth6Answers("cumulAuth6Answers-", 1000, 13) + cumulativeAnswers("cumul-answers-", 10, 19), + cumulativeAuth4Answers("cumul-auth4answers-", 1000, 13), + cumulativeAuth6Answers("cumul-auth6answers-", 1000, 13) { } }; -- 2.47.2