From 88773ac19fca62854842d4abc8210db13368c6d9 Mon Sep 17 00:00:00 2001 From: yuanchao Date: Thu, 18 Dec 2025 16:25:31 +0800 Subject: [PATCH] fix: incorrect fin count --- agent/src/common/flow.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/agent/src/common/flow.rs b/agent/src/common/flow.rs index c40c8540e2a..c4e1fa8f1a7 100644 --- a/agent/src/common/flow.rs +++ b/agent/src/common/flow.rs @@ -473,6 +473,7 @@ impl From for flow_log::TcpPerfStats { cit_max: p.cit_max, syn_count: p.syn_count, synack_count: p.synack_count, + fin_count: p.fin_count, ..Default::default() } }