mirror of
https://github.com/zeek/zeek.git
synced 2025-10-12 19:48:20 +00:00
Cleaned up stats collection.
- Removed the gap_report event. It wasn't used anymore and functionally no more capable that scheduling events and using the get_gap_summary bif. - Added functionality to Dictionaries to count cumulative numbers of inserts performed. This is further used to measure the total number of connections of various types. Previously only the number of active connections was available. - The Reassembler base class now tracks active reassembly size for all subclasses (File/TCP/Frag & unknown). - Improvements to the stats.log. Mostly, more information.
This commit is contained in:
parent
374e61ee20
commit
2b0a28686a
14 changed files with 189 additions and 117 deletions
|
@ -32,19 +32,24 @@ namespace analyzer { namespace arp { class ARP_Analyzer; } }
|
|||
|
||||
struct SessionStats {
|
||||
int num_TCP_conns;
|
||||
int num_UDP_conns;
|
||||
int num_ICMP_conns;
|
||||
int num_fragments;
|
||||
int num_packets;
|
||||
int num_timers;
|
||||
int num_events_queued;
|
||||
int num_events_dispatched;
|
||||
|
||||
int max_TCP_conns;
|
||||
uint64 cumulative_TCP_conns;
|
||||
|
||||
int num_UDP_conns;
|
||||
int max_UDP_conns;
|
||||
uint64 cumulative_UDP_conns;
|
||||
|
||||
int num_ICMP_conns;
|
||||
int max_ICMP_conns;
|
||||
uint64 cumulative_ICMP_conns;
|
||||
|
||||
int num_fragments;
|
||||
int max_fragments;
|
||||
uint64 num_packets;
|
||||
int num_timers;
|
||||
int max_timers;
|
||||
uint64 num_events_queued;
|
||||
uint64 num_events_dispatched;
|
||||
};
|
||||
|
||||
// Drains and deletes a timer manager if it hasn't seen any advances
|
||||
|
@ -242,7 +247,7 @@ protected:
|
|||
OSFingerprint* SYN_OS_Fingerprinter;
|
||||
int build_backdoor_analyzer;
|
||||
int dump_this_packet; // if true, current packet should be recorded
|
||||
int num_packets_processed;
|
||||
uint64 num_packets_processed;
|
||||
PacketProfiler* pkt_profiler;
|
||||
|
||||
// We may use independent timer managers for different sets of related
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue