mirror of
https://github.com/zeek/zeek.git
synced 2025-10-05 08:08:19 +00:00
73 lines
1.8 KiB
Text
73 lines
1.8 KiB
Text
# @TEST-PORT: BROKER_MANAGER_PORT
|
|
# @TEST-PORT: BROKER_PROXY1_PORT
|
|
# @TEST-PORT: BROKER_WORKER1_PORT
|
|
# @TEST-PORT: BROKER_WORKER2_PORT
|
|
#
|
|
# @TEST-EXEC: cp $FILES/broker/cluster-layout.zeek .
|
|
#
|
|
# @TEST-EXEC: btest-bg-run manager ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=manager zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-run proxy-1 ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=proxy-1 zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-run worker-1 ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=worker-1 zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-run worker-2 ZEEKPATH=$ZEEKPATH:.. CLUSTER_NODE=worker-2 zeek -b %INPUT
|
|
# @TEST-EXEC: btest-bg-wait 30
|
|
# @TEST-EXEC: btest-diff manager/notice.log
|
|
|
|
@load base/frameworks/notice
|
|
@load policy/frameworks/cluster/experimental
|
|
|
|
redef Log::default_rotation_interval = 0secs;
|
|
|
|
redef enum Notice::Type += {
|
|
Test_Notice,
|
|
};
|
|
|
|
event Cluster::node_down(name: string, id: string)
|
|
{
|
|
terminate();
|
|
}
|
|
|
|
global proceed: event();
|
|
|
|
event do_notice()
|
|
{
|
|
NOTICE([$note=Test_Notice,
|
|
$msg="test notice!",
|
|
$identifier="this identifier is static"]);
|
|
Broker::flush_logs();
|
|
Broker::publish(Cluster::node_topic("manager"), proceed);
|
|
}
|
|
|
|
event Notice::suppressed(n: Notice::Info)
|
|
{
|
|
print "suppressed", n$note, n$identifier;
|
|
|
|
if ( Cluster::node == "worker-1" )
|
|
terminate();
|
|
}
|
|
|
|
event Notice::begin_suppression(ts: time, suppress_for: interval, note: Notice::Type,
|
|
identifier: string)
|
|
{
|
|
print "begin suppression", suppress_for, note, identifier;
|
|
|
|
if ( Cluster::node == "worker-1" )
|
|
Broker::publish(Cluster::node_topic("manager"), proceed);
|
|
}
|
|
|
|
@if ( Cluster::local_node_type() == Cluster::MANAGER )
|
|
|
|
event Cluster::Experimental::cluster_started()
|
|
{
|
|
Broker::publish(Cluster::node_topic("worker-2"), do_notice);
|
|
}
|
|
|
|
global proceed_count = 0;
|
|
event proceed()
|
|
{
|
|
++proceed_count;
|
|
|
|
if ( proceed_count == 2 )
|
|
Broker::publish(Cluster::node_topic("worker-1"), do_notice);
|
|
}
|
|
|
|
@endif
|