mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00
Reorg of the cluster controller to new "Management framework" layout
- This gives the cluster controller and agent the common name "Management framework" and changes the start directory of the sources from "policy/frameworks/cluster" to "policy/frameworks/management". This avoids ambiguity with the existing cluster framework. - It renames the "ClusterController" and "ClusterAgent" script modules to "Management::Controller" and "Management::Agent", respectively. This allows us to anchor tooling common to both controller and agent at the "Management" module. - It moves common configuration settings, logging, requests, types, and utilities to the common "Management" module. - It removes the explicit "::Types" submodule (so a request/response result is now a Management::Result, not a Management::Types::Result), which makes typenames more readable. - It updates tests that depend on module naming and full set of scripts.
This commit is contained in:
parent
9efc214d42
commit
54aaf3a623
25 changed files with 554 additions and 536 deletions
|
@ -11,20 +11,22 @@
|
|||
|
||||
# @load frameworks/control/controllee.zeek
|
||||
# @load frameworks/control/controller.zeek
|
||||
@load frameworks/cluster/agent/__load__.zeek
|
||||
@load frameworks/cluster/agent/api.zeek
|
||||
@load frameworks/cluster/agent/boot.zeek
|
||||
@load frameworks/cluster/agent/config.zeek
|
||||
# @load frameworks/cluster/agent/main.zeek
|
||||
@load frameworks/cluster/controller/__load__.zeek
|
||||
@load frameworks/cluster/controller/api.zeek
|
||||
@load frameworks/cluster/controller/boot.zeek
|
||||
@load frameworks/cluster/controller/config.zeek
|
||||
@load frameworks/cluster/controller/log.zeek
|
||||
# @load frameworks/cluster/controller/main.zeek
|
||||
@load frameworks/cluster/controller/request.zeek
|
||||
@load frameworks/cluster/controller/types.zeek
|
||||
@load frameworks/cluster/controller/util.zeek
|
||||
@load frameworks/management/agent/__load__.zeek
|
||||
@load frameworks/management/agent/api.zeek
|
||||
@load frameworks/management/agent/boot.zeek
|
||||
@load frameworks/management/agent/config.zeek
|
||||
# @load frameworks/management/agent/main.zeek
|
||||
@load frameworks/management/controller/__load__.zeek
|
||||
@load frameworks/management/controller/api.zeek
|
||||
@load frameworks/management/controller/boot.zeek
|
||||
@load frameworks/management/controller/config.zeek
|
||||
# @load frameworks/management/controller/main.zeek
|
||||
@load frameworks/management/__load__.zeek
|
||||
@load frameworks/management/config.zeek
|
||||
@load frameworks/management/log.zeek
|
||||
@load frameworks/management/request.zeek
|
||||
@load frameworks/management/types.zeek
|
||||
@load frameworks/management/util.zeek
|
||||
@load frameworks/dpd/detect-protocols.zeek
|
||||
@load frameworks/dpd/packet-segment-logging.zeek
|
||||
@load frameworks/intel/do_notice.zeek
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue