Merge remote-tracking branch 'origin/topic/awelzel/expose-num-packets-unprocessed'

* origin/topic/awelzel/expose-num-packets-unprocessed:
  ConnStats: Expose num_packets_unprocessed
  packet_analysis/Manager: Rename GetUnprocessedCount() to PacketsUnprocessed()
This commit is contained in:
Arne Welzel 2025-07-29 10:12:18 +02:00
commit 12518e8256
11 changed files with 47 additions and 8 deletions

View file

@ -1092,6 +1092,7 @@ type ConnStats: record {
num_icmp_conns: count; ##< Current number of ICMP flows in memory.
max_icmp_conns: count; ##< Maximum number of concurrent ICMP flows so far.
cumulative_icmp_conns: count; ##< Total number of ICMP flows so far.
num_packets_unprocessed: count; ##< Total number of packets not processed by any analyzer.
killed_by_inactivity: count;
};