mirror of
https://github.com/zeek/zeek.git
synced 2025-10-04 07:38:19 +00:00

* topic/robin/rotation-pp: Adding a default_path_func that makes the default naming scheme script-level controlled. Reworking logging's postprocessor logic. Conflicts: scripts/base/frameworks/logging/main.bro testing/btest/policy/frameworks/logging/rotate-custom.bro
16 lines
415 B
Text
16 lines
415 B
Text
|
|
@prefixes += cluster-proxy
|
|
|
|
## The proxy only syncs state; does not forward events.
|
|
redef forward_remote_events = F;
|
|
redef forward_remote_state_changes = T;
|
|
|
|
## 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";
|
|
|