From: Remi Gacogne Date: Wed, 15 Mar 2023 12:21:29 +0000 (+0100) Subject: dnsdist: Update ChangeLog and upgrade guide for 1.8.0-rc3 X-Git-Tag: auth-4.8.0-alpha1~4^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=918dda5f00f4ddc5b96f08a09ea571001d2b003d;p=thirdparty%2Fpdns.git dnsdist: Update ChangeLog and upgrade guide for 1.8.0-rc3 --- diff --git a/pdns/dnsdistdist/docs/changelog.rst b/pdns/dnsdistdist/docs/changelog.rst index fc575480e2..953b9b8c6c 100644 --- a/pdns/dnsdistdist/docs/changelog.rst +++ b/pdns/dnsdistdist/docs/changelog.rst @@ -18,11 +18,23 @@ Changelog Fix a race when a cross-protocol query triggers an IO error .. change:: - :tags: Improvements, Webserver + :tags: Improvements, Metrics, Webserver :pullreq: 12638 Report per-incoming transport latencies in the web interface + .. change:: + :tags: Improvements, Metrics + :pullreq: 12648 + + Report the TCP latency for TCP-only Do53, DoT and DoH backends + + .. change:: + :tags: Improvements + :pullreq: 12626 + + Count hits in the StatNode + .. changelog:: :version: 1.8.0-rc2 :released: 9th of March 2023 diff --git a/pdns/dnsdistdist/docs/upgrade_guide.rst b/pdns/dnsdistdist/docs/upgrade_guide.rst index f3302729e7..d089a9d0f7 100644 --- a/pdns/dnsdistdist/docs/upgrade_guide.rst +++ b/pdns/dnsdistdist/docs/upgrade_guide.rst @@ -12,6 +12,11 @@ The :func:`setMaxTCPConnectionsPerClient` limit is now properly applied to DNS o The configuration check will now fail if the configuration file does not exist. For this reason we now create a default configuration file, based on the file previously called ``dnsdistconf.lua``, which contains commented-out examples of how to set up dnsdist. +Latency metrics have been broken down: + +* per incoming protocol (Do53 UDP, Do53 TCP, DoT, DoH) for global latency metrics +* between UDP (Do53) and TCP (Do53 TCP, DoT, DoH) for backend latency metrics + 1.7.0 to 1.7.1 --------------