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

- Metrics now work on cluster deployments with no caveats. It should be completely transparent. Intermediate updates to speed some detection will come later.
11 lines
No EOL
245 B
Text
11 lines
No EOL
245 B
Text
@load ./main
|
|
|
|
# The cluster framework must be loaded first.
|
|
@load base/frameworks/cluster
|
|
|
|
# Load either the cluster support script or the non-cluster support script.
|
|
@if ( Cluster::is_enabled() )
|
|
@load ./cluster
|
|
@else
|
|
@load ./non-cluster
|
|
@endif |