init-bare/zeek-setup: Groundwork for instantiating cluster backends

This commit is contained in:
Arne Welzel 2024-11-14 18:51:04 +01:00
parent fdde1e9841
commit b3080f2652
2 changed files with 35 additions and 3 deletions

View file

@ -5756,6 +5756,16 @@ export {
## Cluster backend to use. Default is the broker backend.
const backend = Cluster::CLUSTER_BACKEND_BROKER &redef;
## The event serializer to use by the cluster backend.
##
## This currently has no effect for backend BROKER.
const event_serializer = Cluster::EVENT_SERIALIZER_BROKER_BIN_V1 &redef;
## The log serializer to use by the backend.
##
## This currently has no effect for backend BROKER.
const log_serializer = Cluster::LOG_SERIALIZER_ZEEK_BIN_V1 &redef;
}
module Weird;