mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 15:48:19 +00:00
Extending queue statistics.
This commit is contained in:
parent
e3f5cbb670
commit
d7c9471818
6 changed files with 54 additions and 4 deletions
|
@ -154,6 +154,10 @@ public:
|
|||
uint64_t sent_out; //! Number of messages sent from the child thread to the main thread
|
||||
uint64_t pending_in; //! Number of messages sent to the child but not yet processed.
|
||||
uint64_t pending_out; //! Number of messages sent from the child but not yet processed by the main thread.
|
||||
|
||||
/// Statistics from our queues.
|
||||
Queue<BasicInputMessage *>::Stats queue_in_stats;
|
||||
Queue<BasicOutputMessage *>::Stats queue_out_stats;
|
||||
};
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue