Skip to content

Commit

Permalink
Merge pull request #11680 from mnordhoff/patch-12
Browse files Browse the repository at this point in the history
rec: Fix typos in stats log messages
  • Loading branch information
omoerbeek authored Jun 5, 2022
2 parents 551ca3e + ed164eb commit 0438e24
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pdns/recursordist/rec-main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -958,13 +958,13 @@ static void doStats(void)
"record-cache-acquired", Logging::Loggable(rc_stats.second),
"record-cache-contended-perc", Logging::Loggable(r));
log->info(Logr::Info, m,
"trottle-entries", Logging::Loggable(SyncRes::getThrottledServersSize()),
"throttle-entries", Logging::Loggable(SyncRes::getThrottledServersSize()),
"nsspeed-entries", Logging::Loggable(SyncRes::getNSSpeedsSize()),
"failed-host-entries", Logging::Loggable(SyncRes::getFailedServersSize()),
"edns-entries", Logging::Loggable(broadcastAccFunction<uint64_t>(pleaseGetEDNSStatusesSize)),
"non-resolving-nameserver-entries", Logging::Loggable(SyncRes::getNonResolvingNSSize()),
"saved-parent-ns-sets-entries", Logging::Loggable(SyncRes::getSaveParentsNSSetsSize()),
"outqueries-per-qeuery", Logging::Loggable(ratePercentage(SyncRes::s_outqueries, SyncRes::s_queries)));
"outqueries-per-query", Logging::Loggable(ratePercentage(SyncRes::s_outqueries, SyncRes::s_queries)));
log->info(Logr::Info, m,
"throttled-queries-perc", Logging::Loggable(ratePercentage(SyncRes::s_throttledqueries, SyncRes::s_outqueries + SyncRes::s_throttledqueries)),
"tcp-outqueries", Logging::Loggable(SyncRes::s_tcpoutqueries),
Expand Down

0 comments on commit 0438e24

Please sign in to comment.