zeek/doc/scripting/event_groups_attr_02.zeek
Tim Wojtulewicz ded98cd373 Copy docs into Zeek repo directly
This is based on commit 2731def9159247e6da8a3191783c89683363689c from the
zeek-docs repo.
2025-09-26 02:58:29 +00:00

46 lines
1.5 KiB
Text

@load base/frameworks/config
redef Config::config_files += { "./myconfig.dat" };
module Debug;
export {
option http_print_debugging = F;
}
event http_request(c: connection, method: string, original_URI: string, unescaped_URI: string, version: string) &group="http-print-debugging"
{
print fmt("HTTP request: %s %s (%s->%s)", method, original_URI, c$id$orig_h, c$id$resp_h);
}
event http_header(c: connection, is_orig: bool, original_name: string, name: string, value: string) &group="http-print-debugging"
{
if ( name != "USER-AGENT" && name != "SERVER" )
return;
local snd = is_orig ? c$id$orig_h : c$id$resp_h;
local rcv = is_orig ? c$id$resp_h : c$id$orig_h;
print fmt("HTTP header : %s=%s (%s->%s)", original_name, value, snd, rcv);
}
event http_reply(c: connection, version: string, code: count, reason: string) &group="http-print-debugging"
{
print fmt("HTTP reply : %s/%s version %s (%s->%s)", code, reason, version, c$id$resp_h, c$id$orig_h);
}
event zeek_init()
{
Option::set_change_handler("Debug::http_print_debugging", function(id: string, new_value: bool): bool {
print id, new_value;
if ( new_value )
enable_event_group("http-print-debugging");
else
disable_event_group("http-print-debugging");
return new_value;
});
# Trigger the change handler, once.
Config::set_value("Debug::http_print_debugging", http_print_debugging);
}