mirror of
https://github.com/zeek/zeek.git
synced 2025-10-09 01:58:20 +00:00
Extending log post-processor call to include the name of the writer.
This commit is contained in:
parent
1fba55f4f3
commit
18aa41c62b
1 changed files with 5 additions and 2 deletions
|
@ -376,13 +376,16 @@ function run_rotation_postprocessor_cmd(info: RotationInfo, npath: string) : boo
|
||||||
if ( pp_cmd == "" )
|
if ( pp_cmd == "" )
|
||||||
return T;
|
return T;
|
||||||
|
|
||||||
|
# Turn, e.g., Log::WRITER_ASCII into "ascii".
|
||||||
|
local writer = subst_string(to_lower(fmt("%s", info$writer)), "log::writer_", "");
|
||||||
|
|
||||||
# The date format is hard-coded here to provide a standardized
|
# The date format is hard-coded here to provide a standardized
|
||||||
# script interface.
|
# script interface.
|
||||||
system(fmt("%s %s %s %s %s %d",
|
system(fmt("%s %s %s %s %s %d %s",
|
||||||
pp_cmd, npath, info$path,
|
pp_cmd, npath, info$path,
|
||||||
strftime("%y-%m-%d_%H.%M.%S", info$open),
|
strftime("%y-%m-%d_%H.%M.%S", info$open),
|
||||||
strftime("%y-%m-%d_%H.%M.%S", info$close),
|
strftime("%y-%m-%d_%H.%M.%S", info$close),
|
||||||
info$terminating));
|
info$terminating, writer));
|
||||||
|
|
||||||
return T;
|
return T;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue