From 06a1f4401daa3211fb8d2778a3c634b6526db59a Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 23 Nov 2025 11:07:02 +0100 Subject: [PATCH] Release 1.2.3-1 --- debian/changelog | 9 +++++++++ src/main.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 5ba5a02..023317c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +govpp-snmp-agentx (1.2.3-1) bookworm; urgency=medium + + * Fix VPP stats filtering to exclude deleted interfaces + * Add interface manager integration to stats manager + * Filter out stale interface statistics from deleted interfaces + * Improve stats reliability by cross-referencing with current interface list + + -- Pim van Pelt Sat, 23 Nov 2024 00:00:00 +0000 + govpp-snmp-agentx (1.2.2-1) bookworm; urgency=medium * Simplify ifmib integration by removing reflection usage diff --git a/src/main.go b/src/main.go index d1e64b4..8ec0828 100644 --- a/src/main.go +++ b/src/main.go @@ -16,7 +16,7 @@ import ( "govpp-snmp-agentx/vpp" ) -const Version = "1.2.2-1" +const Version = "1.2.3-1" func main() { debug := flag.Bool("debug", false, "Enable debug logging")