ConnStats: Expose num_packets_unprocessed

Not sure it's the best place to put, but we don't have packet analysis stats
bif and also num_packets is already there, so seems reasonable to put the
num_packets_unprocessed into
This commit is contained in:
Arne Welzel 2025-07-28 14:10:49 +02:00
parent fa476746bf
commit 120f061bcd
6 changed files with 20 additions and 3 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;
};