mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Introduce get_packet_lag()
This commit is contained in:
parent
6977c07a25
commit
c2b17f9d30
3 changed files with 29 additions and 11 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
##! Time-related functions.
|
||||||
|
|
||||||
## Given an interval, returns a string representing the minutes and seconds
|
## Given an interval, returns a string representing the minutes and seconds
|
||||||
## in the interval (for example, "3m34s").
|
## in the interval (for example, "3m34s").
|
||||||
|
@ -6,3 +7,22 @@ function duration_to_mins_secs(dur: interval): string
|
||||||
local dur_count = double_to_count(interval_to_double(dur));
|
local dur_count = double_to_count(interval_to_double(dur));
|
||||||
return fmt("%dm%ds", dur_count/60, dur_count%60);
|
return fmt("%dm%ds", dur_count/60, dur_count%60);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
## Time value representing the 0 timestamp.
|
||||||
|
const null_ts = double_to_time(0);
|
||||||
|
|
||||||
|
## Calculate the packet lag, i.e. the difference between wall clock and the
|
||||||
|
## timestamp of the currently processed packet. If Zeek is not processing a
|
||||||
|
## packet, the function returns a 0 interval value.
|
||||||
|
function get_packet_lag(): interval
|
||||||
|
{
|
||||||
|
# We use get_current_packet_ts() instead of network_time() here, because
|
||||||
|
# network time does not immediately fall back to wall clock if there is
|
||||||
|
# no packet. Instead, network time remains set to the last seen packet's
|
||||||
|
# timestamp for ``packet_source_inactivity_timeout``.
|
||||||
|
local pkt_ts = get_current_packet_ts();
|
||||||
|
if (pkt_ts == null_ts)
|
||||||
|
return 0 sec;
|
||||||
|
|
||||||
|
return current_time() - pkt_ts;
|
||||||
|
}
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
@load base/frameworks/notice
|
@load base/frameworks/notice
|
||||||
@load base/frameworks/telemetry
|
@load base/frameworks/telemetry
|
||||||
|
@load base/utils/time
|
||||||
|
|
||||||
module Stats;
|
module Stats;
|
||||||
|
|
||||||
|
@ -166,8 +167,6 @@ event zeek_init() &priority=5
|
||||||
Log::create_stream(Stats::LOG, [$columns=Info, $ev=log_stats, $path="stats", $policy=log_policy]);
|
Log::create_stream(Stats::LOG, [$columns=Info, $ev=log_stats, $path="stats", $policy=log_policy]);
|
||||||
}
|
}
|
||||||
|
|
||||||
const null_ts = double_to_time(0);
|
|
||||||
|
|
||||||
event check_stats(then: time, last_ns: NetStats, last_cs: ConnStats, last_ps: ProcStats, last_es: EventStats, last_rs: ReassemblerStats, last_ts: TimerStats, last_fs: FileAnalysisStats, last_ds: DNSStats)
|
event check_stats(then: time, last_ns: NetStats, last_cs: ConnStats, last_ps: ProcStats, last_es: EventStats, last_rs: ReassemblerStats, last_ts: TimerStats, last_fs: FileAnalysisStats, last_ds: DNSStats)
|
||||||
{
|
{
|
||||||
local nettime = network_time();
|
local nettime = network_time();
|
||||||
|
@ -216,8 +215,7 @@ event check_stats(then: time, last_ns: NetStats, last_cs: ConnStats, last_ps: Pr
|
||||||
|
|
||||||
if ( reading_live_traffic() )
|
if ( reading_live_traffic() )
|
||||||
{
|
{
|
||||||
local pkt_ts = get_current_packet_ts();
|
info$pkt_lag = get_packet_lag();
|
||||||
info$pkt_lag = pkt_ts > null_ts ? current_time() - pkt_ts : 0 sec;
|
|
||||||
info$pkts_dropped = ns$pkts_dropped - last_ns$pkts_dropped;
|
info$pkts_dropped = ns$pkts_dropped - last_ns$pkts_dropped;
|
||||||
info$pkts_link = ns$pkts_link - last_ns$pkts_link;
|
info$pkts_link = ns$pkts_link - last_ns$pkts_link;
|
||||||
|
|
||||||
|
|
14
src/zeek.bif
14
src/zeek.bif
|
@ -3833,19 +3833,19 @@ function get_current_packet_header%(%) : raw_pkt_hdr
|
||||||
return std::move(hdr);
|
return std::move(hdr);
|
||||||
%}
|
%}
|
||||||
|
|
||||||
## Returns the currently processed PCAP packet's timestamp.
|
## Returns the currently processed PCAP packet's timestamp or a 0 timestamp if
|
||||||
|
## there is no packet being processed at the moment.
|
||||||
##
|
##
|
||||||
## Returns: The currently processed packet's timestamp.
|
## Returns: The currently processed packet's timestamp.
|
||||||
##
|
##
|
||||||
## .. zeek:see:: get_current_packet get_current_packet_header
|
## .. zeek:see:: get_current_packet get_current_packet_header network_time
|
||||||
##
|
##
|
||||||
## .. note::
|
## .. note::
|
||||||
##
|
##
|
||||||
## For ``get_current_packet_ts()`` the same limitations as for
|
## When there is no packet being processed, ``get_current_packet_ts()``
|
||||||
## :zeek:see:`get_current_packet` apply. In particular, the return value
|
## will return a 0 timestamp, while ``network_time()`` will return the
|
||||||
## should be considered undefined when called within event handlers raised
|
## timestamp of the last processed packet until it falls back to tracking
|
||||||
## via :zeek:see:`event`, :zeek:see:`schedule` or by recipient of Broker
|
## wall clock after ``packet_source_inactivity_timeout``.
|
||||||
## messages.
|
|
||||||
function get_current_packet_ts%(%) : time
|
function get_current_packet_ts%(%) : time
|
||||||
%{
|
%{
|
||||||
double ts = 0;
|
double ts = 0;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue