mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 22:58:20 +00:00

This is based on commit 2731def9159247e6da8a3191783c89683363689c from the zeek-docs repo.
13 lines
365 B
Text
13 lines
365 B
Text
global log_writes_cf = Telemetry::register_counter_family([
|
|
$prefix="zeek",
|
|
$name="log_writes",
|
|
$unit="1",
|
|
$help_text="Number of log writes per stream",
|
|
$label_names=vector("log_id")
|
|
]);
|
|
|
|
hook Log::log_stream_policy(rec: any, id: Log::ID)
|
|
{
|
|
local log_id = to_lower(gsub(cat(id), /:+/, "_"));
|
|
Telemetry::counter_family_inc(log_writes_cf, vector(log_id));
|
|
}
|