mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 14:48:21 +00:00
Remove deprecated time machine settings
This commit is contained in:
parent
aba1f431cf
commit
a716903f3a
6 changed files with 7 additions and 38 deletions
|
@ -40,10 +40,6 @@ export {
|
||||||
## worker nodes in a cluster. Used with broker-enabled cluster communication.
|
## worker nodes in a cluster. Used with broker-enabled cluster communication.
|
||||||
const worker_topic = "zeek/cluster/worker" &redef;
|
const worker_topic = "zeek/cluster/worker" &redef;
|
||||||
|
|
||||||
## The topic name used for exchanging messages that are relevant to
|
|
||||||
## time machine nodes in a cluster. Used with broker-enabled cluster communication.
|
|
||||||
const time_machine_topic = "zeek/cluster/time_machine" &redef &deprecated="Remove in v7.1: Unused.";
|
|
||||||
|
|
||||||
## A set of topic names to be used for broadcasting messages that are
|
## A set of topic names to be used for broadcasting messages that are
|
||||||
## relevant to all nodes in a cluster. Currently, there is not a common
|
## relevant to all nodes in a cluster. Currently, there is not a common
|
||||||
## topic to broadcast to, because enabling implicit Broker forwarding would
|
## topic to broadcast to, because enabling implicit Broker forwarding would
|
||||||
|
@ -53,9 +49,6 @@ export {
|
||||||
manager_topic,
|
manager_topic,
|
||||||
proxy_topic,
|
proxy_topic,
|
||||||
worker_topic,
|
worker_topic,
|
||||||
@pragma push ignore-deprecations
|
|
||||||
time_machine_topic,
|
|
||||||
@pragma pop ignore-deprecations
|
|
||||||
};
|
};
|
||||||
|
|
||||||
## The topic prefix used for exchanging messages that are relevant to
|
## The topic prefix used for exchanging messages that are relevant to
|
||||||
|
@ -169,10 +162,6 @@ export {
|
||||||
PROXY,
|
PROXY,
|
||||||
## The node type doing all the actual traffic analysis.
|
## The node type doing all the actual traffic analysis.
|
||||||
WORKER,
|
WORKER,
|
||||||
## A node acting as a traffic recorder using the
|
|
||||||
## `Time Machine <https://github.com/zeek/time-machine>`_
|
|
||||||
## software.
|
|
||||||
TIME_MACHINE &deprecated="Remove in v7.1: Unused.",
|
|
||||||
};
|
};
|
||||||
|
|
||||||
## Record type to indicate a node in a cluster.
|
## Record type to indicate a node in a cluster.
|
||||||
|
@ -191,8 +180,6 @@ export {
|
||||||
interface: string &optional &deprecated="Remove in v7.1: interface is not required and not set consistently on workers. Replace usages with packet_source() or keep a separate worker-to-interface mapping in a global table.";
|
interface: string &optional &deprecated="Remove in v7.1: interface is not required and not set consistently on workers. Replace usages with packet_source() or keep a separate worker-to-interface mapping in a global table.";
|
||||||
## Name of the manager node this node uses. For workers and proxies.
|
## Name of the manager node this node uses. For workers and proxies.
|
||||||
manager: string &optional;
|
manager: string &optional;
|
||||||
## Name of a time machine node with which this node connects.
|
|
||||||
time_machine: string &optional &deprecated="Remove in v7.1: Unused.";
|
|
||||||
## A unique identifier assigned to the node by the broker framework.
|
## A unique identifier assigned to the node by the broker framework.
|
||||||
## This field is only set while a node is connected.
|
## This field is only set while a node is connected.
|
||||||
id: string &optional;
|
id: string &optional;
|
||||||
|
|
|
@ -94,11 +94,6 @@ event zeek_init() &priority=-10
|
||||||
case WORKER:
|
case WORKER:
|
||||||
Broker::subscribe(Cluster::worker_topic);
|
Broker::subscribe(Cluster::worker_topic);
|
||||||
break;
|
break;
|
||||||
@pragma push ignore-deprecations
|
|
||||||
case TIME_MACHINE:
|
|
||||||
Broker::subscribe(Cluster::time_machine_topic);
|
|
||||||
break;
|
|
||||||
@pragma pop ignore-deprecations
|
|
||||||
default:
|
default:
|
||||||
Reporter::error(fmt("Unhandled cluster node type: %s", self$node_type));
|
Reporter::error(fmt("Unhandled cluster node type: %s", self$node_type));
|
||||||
return;
|
return;
|
||||||
|
@ -121,11 +116,6 @@ event zeek_init() &priority=-10
|
||||||
case MANAGER:
|
case MANAGER:
|
||||||
connect_peers_with_type(LOGGER);
|
connect_peers_with_type(LOGGER);
|
||||||
|
|
||||||
@pragma push ignore-deprecations
|
|
||||||
if ( self?$time_machine )
|
|
||||||
connect_peer(TIME_MACHINE, self$time_machine);
|
|
||||||
@pragma pop ignore-deprecations
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case PROXY:
|
case PROXY:
|
||||||
connect_peers_with_type(LOGGER);
|
connect_peers_with_type(LOGGER);
|
||||||
|
@ -141,11 +131,6 @@ event zeek_init() &priority=-10
|
||||||
if ( self?$manager )
|
if ( self?$manager )
|
||||||
connect_peer(MANAGER, self$manager);
|
connect_peer(MANAGER, self$manager);
|
||||||
|
|
||||||
@pragma push ignore-deprecations
|
|
||||||
if ( self?$time_machine )
|
|
||||||
connect_peer(TIME_MACHINE, self$time_machine);
|
|
||||||
@pragma pop ignore-deprecations
|
|
||||||
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -5256,9 +5256,6 @@ const dpd_ignore_ports = F &redef;
|
||||||
## connection if it misses the initial handshake.
|
## connection if it misses the initial handshake.
|
||||||
const likely_server_ports: set[port] &redef;
|
const likely_server_ports: set[port] &redef;
|
||||||
|
|
||||||
## If true, output profiling for Time-Machine queries.
|
|
||||||
const time_machine_profiling = F &redef &deprecated="Remove in v7.1. Unused.";
|
|
||||||
|
|
||||||
## Holds the filename of the trace file given with ``-w`` (empty if none).
|
## Holds the filename of the trace file given with ``-w`` (empty if none).
|
||||||
##
|
##
|
||||||
## .. zeek:see:: record_all_packets
|
## .. zeek:see:: record_all_packets
|
||||||
|
|
|
@ -13,15 +13,15 @@ init_key2 in state2: 1
|
||||||
[worker-1] = [node_type=Cluster::WORKER, ip=127.0.0.1, p=5/udp, manager=manager-1]
|
[worker-1] = [node_type=Cluster::WORKER, ip=127.0.0.1, p=5/udp, manager=manager-1]
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>],
|
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>],
|
||||||
[worker-5] = [node_type=Cluster::WORKER, ip=3.4.5.6, zone_id=, p=15/tcp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
[worker-5] = [node_type=Cluster::WORKER, ip=3.4.5.6, zone_id=, p=15/tcp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>],
|
[worker-4] = [node_type=Cluster::WORKER, ip=2.3.4.5, zone_id=, p=13/udp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>],
|
||||||
[worker-6] = [node_type=Cluster::WORKER, ip=4.5.6.7, zone_id=, p=17/udp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
[worker-6] = [node_type=Cluster::WORKER, ip=4.5.6.7, zone_id=, p=17/udp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
[3.0, 4]
|
[3.0, 4]
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
supervised node zeek_init()
|
supervised node zeek_init()
|
||||||
1024, cluster_nodes!
|
1024, cluster_nodes!
|
||||||
[node_type=Cluster::WORKER, ip=127.0.0.1, zone_id=, p=0/tcp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
[node_type=Cluster::WORKER, ip=127.0.0.1, zone_id=, p=0/tcp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
||||||
supervised node zeek_done()
|
supervised node zeek_done()
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
### BTest baseline data generated by btest-diff. Do not edit. Use "btest -U/-u" to update. Requires BTest >= 0.63.
|
||||||
supervised node zeek_init()
|
supervised node zeek_init()
|
||||||
1024, cluster_nodes!
|
1024, cluster_nodes!
|
||||||
[node_type=Cluster::WORKER, ip=127.0.0.1, zone_id=, p=0/tcp, interface=<uninitialized>, manager=<uninitialized>, time_machine=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
[node_type=Cluster::WORKER, ip=127.0.0.1, zone_id=, p=0/tcp, interface=<uninitialized>, manager=<uninitialized>, id=<uninitialized>, metrics_port=<uninitialized>]
|
||||||
supervised node zeek_done()
|
supervised node zeek_done()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue