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

* origin/topic/seth/notice-suppression: Updated a notice related baseline and added a necessary @load line. Notice suppression clean up and notice/cluster integrtion fixes. Updates for notice suppression to use the &create_expire attribute Small, mostly cosmetic updates and fixing a test. Fix crash on exit (addresses #607). Duplicate notice suppression. Closes #623.
20 lines
678 B
Text
20 lines
678 B
Text
@prefixes += cluster-worker
|
|
|
|
# Load the script for local site configuration for the worker nodes.
|
|
@load site/local-worker
|
|
|
|
## Don't do any local logging.
|
|
redef Log::enable_local_logging = F;
|
|
|
|
## Make sure that remote logging is enabled.
|
|
redef Log::enable_remote_logging = T;
|
|
|
|
## Use the cluster's delete-log script.
|
|
redef Log::default_rotation_postprocessor_cmd = "delete-log";
|
|
|
|
## Record all packets into trace file.
|
|
##
|
|
## Note that this only indicates that *if* we are recording packets, we want all
|
|
## of them (rather than just those the core deems sufficiently important). Setting
|
|
## this does not turn recording on. Use '-w <trace>' for that.
|
|
redef record_all_packets = T;
|