mirror of
https://github.com/zeek/zeek.git
synced 2025-10-15 04:58:21 +00:00
Implement string- and container-length filtering at the log record level
This commit is contained in:
parent
cc59bfa5d8
commit
e2e7ab28da
11 changed files with 227 additions and 10 deletions
|
@ -19,6 +19,12 @@
|
|||
|
||||
module Test;
|
||||
|
||||
# Disable the string and container length filtering.
|
||||
redef Log::max_field_string_bytes = 0;
|
||||
redef Log::max_total_string_bytes = 0;
|
||||
redef Log::max_field_container_elements = 0;
|
||||
redef Log::max_total_container_elements = 0;
|
||||
|
||||
export {
|
||||
redef enum Log::ID += { LOG };
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue