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

This provides Broker-level plumbing that allows agents to reach out to their managed Zeek nodes and collect responses. As a first event, it establishes Management::Node::API::notify_agent_hello, to notify the agent when the cluster node is ready to communicate. Also a bit of comment rewording to replace use of "data cluster" with simply "cluster", to avoid ambiguity with data nodes in SumStats, and expansion of test-all-policy.zeek and related/dependent tests, since we're introducing new scripts.
9 lines
301 B
Text
9 lines
301 B
Text
##! Configuration settings for nodes controlled by the Management framework.
|
|
|
|
module Management::Node;
|
|
|
|
export {
|
|
## The nodes' Broker topic. Cluster nodes automatically subscribe
|
|
## to it, to receive request events from the Management framework.
|
|
const node_topic = "zeek/management/node" &redef;
|
|
}
|