mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
71 lines
1.9 KiB
Text
71 lines
1.9 KiB
Text
# Test in cluster mode, the manager produces the cluster.log
|
|
#
|
|
# @TEST-PORT: BROKER_PORT1
|
|
# @TEST-PORT: BROKER_PORT2
|
|
#
|
|
# @TEST-EXEC: zeek -b --parse-only %INPUT
|
|
# @TEST-EXEC: btest-bg-run manager-1 "cp ../cluster-layout.zeek . && CLUSTER_NODE=manager-1 zeek -b %INPUT"
|
|
# @TEST-EXEC: btest-bg-run worker-1 "cp ../cluster-layout.zeek . && CLUSTER_NODE=worker-1 zeek -b --pseudo-realtime -C -r $TRACES/dhcp/dhcp_ack_subscriber_id_and_agent_remote_id.trace %INPUT"
|
|
|
|
# @TEST-EXEC: btest-bg-wait 10
|
|
# @TEST-EXEC: btest-diff worker-1/.stdout
|
|
# @TEST-EXEC: btest-diff manager-1/.stdout
|
|
# @TEST-EXEC: btest-diff manager-1/dhcp.log
|
|
|
|
@TEST-START-FILE cluster-layout.zeek
|
|
redef Cluster::nodes = {
|
|
["manager-1"] = [$node_type=Cluster::MANAGER, $ip=127.0.0.1, $p=to_port(getenv("BROKER_PORT1"))],
|
|
["worker-1"] = [$node_type=Cluster::WORKER, $ip=127.0.0.1, $p=to_port(getenv("BROKER_PORT2")), $manager="manager-1"],
|
|
};
|
|
@TEST-END-FILE
|
|
|
|
@load base/protocols/dhcp
|
|
@load base/frameworks/broker
|
|
@load base/frameworks/cluster
|
|
@load base/frameworks/logging
|
|
|
|
redef Log::default_rotation_interval = 0secs;
|
|
redef Log::default_rotation_postprocessor_cmd = "echo";
|
|
redef exit_only_after_terminate = T;
|
|
|
|
redef Broker::disable_ssl = T;
|
|
redef Cluster::manager_is_logger = T;
|
|
|
|
event terminate_me() {
|
|
terminate();
|
|
}
|
|
|
|
@if ( Cluster::local_node_type() == Cluster::WORKER )
|
|
event zeek_init()
|
|
{
|
|
suspend_processing();
|
|
}
|
|
|
|
event Cluster::node_up(name: string, id: string)
|
|
{
|
|
print "node_up", name;
|
|
continue_processing();
|
|
}
|
|
|
|
event dhcp_message(c: connection, is_orig: bool, msg: DHCP::Msg, options: DHCP::Options)
|
|
{
|
|
print "dhcp_message", c$uid;
|
|
}
|
|
|
|
event Pcap::file_done(path: string)
|
|
{
|
|
print "file_done";
|
|
terminate();
|
|
}
|
|
@else
|
|
|
|
event DHCP::aggregate_msgs(ts: time, id: conn_id, uid: string, is_orig: bool, msg: DHCP::Msg, options: DHCP::Options) &priority=5
|
|
{
|
|
print "DHCP::aggregate_msgs", ts, uid;
|
|
}
|
|
|
|
event Cluster::node_down(name: string, id: string)
|
|
{
|
|
terminate();
|
|
}
|
|
@endif
|