mirror of
https://github.com/zeek/zeek.git
synced 2025-10-14 04:28:20 +00:00
Copy docs into Zeek repo directly
This is based on commit 2731def9159247e6da8a3191783c89683363689c from the zeek-docs repo.
This commit is contained in:
parent
83f1e74643
commit
ded98cd373
1074 changed files with 169319 additions and 0 deletions
14
doc/scripts/base/frameworks/supervisor/__load__.zeek.rst
Normal file
14
doc/scripts/base/frameworks/supervisor/__load__.zeek.rst
Normal file
|
@ -0,0 +1,14 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/frameworks/supervisor/__load__.zeek
|
||||
========================================
|
||||
|
||||
|
||||
:Imports: :doc:`base/frameworks/supervisor/api.zeek </scripts/base/frameworks/supervisor/api.zeek>`, :doc:`base/frameworks/supervisor/control.zeek </scripts/base/frameworks/supervisor/control.zeek>`, :doc:`base/frameworks/supervisor/main.zeek </scripts/base/frameworks/supervisor/main.zeek>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
377
doc/scripts/base/frameworks/supervisor/api.zeek.rst
Normal file
377
doc/scripts/base/frameworks/supervisor/api.zeek.rst
Normal file
|
@ -0,0 +1,377 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/frameworks/supervisor/api.zeek
|
||||
===================================
|
||||
.. zeek:namespace:: Supervisor
|
||||
|
||||
The Zeek process supervision API.
|
||||
This API was introduced in Zeek 3.1.0 and considered unstable until 4.0.0.
|
||||
That is, it may change in various incompatible ways without warning or
|
||||
deprecation until the stable 4.0.0 release.
|
||||
|
||||
:Namespace: Supervisor
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
Types
|
||||
#####
|
||||
============================================================= ========================================================================
|
||||
:zeek:type:`Supervisor::ClusterEndpoint`: :zeek:type:`record` Describes configuration of a supervised-node within Zeek's Cluster
|
||||
Framework.
|
||||
:zeek:type:`Supervisor::ClusterRole`: :zeek:type:`enum` The role a supervised-node will play in Zeek's Cluster Framework.
|
||||
:zeek:type:`Supervisor::NodeConfig`: :zeek:type:`record` Configuration options that influence behavior of a supervised Zeek node.
|
||||
:zeek:type:`Supervisor::NodeStatus`: :zeek:type:`record` The current status of a supervised node.
|
||||
:zeek:type:`Supervisor::Status`: :zeek:type:`record` The current status of a set of supervised nodes.
|
||||
============================================================= ========================================================================
|
||||
|
||||
Events
|
||||
######
|
||||
====================================================== ================================================================
|
||||
:zeek:id:`Supervisor::node_status`: :zeek:type:`event` A notification event the Supervisor generates when it receives a
|
||||
status message update from the stem, indicating node has
|
||||
(re-)started.
|
||||
====================================================== ================================================================
|
||||
|
||||
Hooks
|
||||
#####
|
||||
===================================================== ==================================================================
|
||||
:zeek:id:`Supervisor::stderr_hook`: :zeek:type:`hook` Hooks into the stderr stream for all supervisor's child processes.
|
||||
:zeek:id:`Supervisor::stdout_hook`: :zeek:type:`hook` Hooks into the stdout stream for all supervisor's child processes.
|
||||
===================================================== ==================================================================
|
||||
|
||||
Functions
|
||||
#########
|
||||
=========================================================== =============================================================
|
||||
:zeek:id:`Supervisor::create`: :zeek:type:`function` Create a new supervised node process.
|
||||
:zeek:id:`Supervisor::destroy`: :zeek:type:`function` Destroy and remove a supervised node process.
|
||||
:zeek:id:`Supervisor::is_supervised`: :zeek:type:`function` Returns: true if this is a supervised node process.
|
||||
:zeek:id:`Supervisor::is_supervisor`: :zeek:type:`function` Returns: true if this is the Supervisor process.
|
||||
:zeek:id:`Supervisor::node`: :zeek:type:`function` Returns: the node configuration if this is a supervised node.
|
||||
:zeek:id:`Supervisor::restart`: :zeek:type:`function` Restart a supervised node process by destroying (killing) and
|
||||
re-recreating it.
|
||||
:zeek:id:`Supervisor::status`: :zeek:type:`function` Retrieve current status of a supervised node process.
|
||||
=========================================================== =============================================================
|
||||
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
Types
|
||||
#####
|
||||
.. zeek:type:: Supervisor::ClusterEndpoint
|
||||
:source-code: base/frameworks/supervisor/api.zeek 20 35
|
||||
|
||||
:Type: :zeek:type:`record`
|
||||
|
||||
|
||||
.. zeek:field:: role :zeek:type:`Supervisor::ClusterRole`
|
||||
|
||||
The role a supervised-node will play in Zeek's Cluster Framework.
|
||||
|
||||
|
||||
.. zeek:field:: host :zeek:type:`addr`
|
||||
|
||||
The host/IP at which the cluster node runs.
|
||||
|
||||
|
||||
.. zeek:field:: p :zeek:type:`port`
|
||||
|
||||
The TCP port at which the cluster node listens for connections.
|
||||
|
||||
|
||||
.. zeek:field:: interface :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The interface name from which the node will read/analyze packets.
|
||||
Typically used by worker nodes.
|
||||
|
||||
|
||||
.. zeek:field:: pcap_file :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The PCAP file name from which the node will read/analyze packets.
|
||||
Typically used by worker nodes.
|
||||
|
||||
|
||||
.. zeek:field:: metrics_port :zeek:type:`port` :zeek:attr:`&optional`
|
||||
|
||||
The TCP port at which the cluster node exposes metrics for Prometheus.
|
||||
|
||||
|
||||
Describes configuration of a supervised-node within Zeek's Cluster
|
||||
Framework.
|
||||
|
||||
.. zeek:type:: Supervisor::ClusterRole
|
||||
:source-code: base/frameworks/supervisor/api.zeek 10 10
|
||||
|
||||
:Type: :zeek:type:`enum`
|
||||
|
||||
.. zeek:enum:: Supervisor::NONE Supervisor::ClusterRole
|
||||
|
||||
.. zeek:enum:: Supervisor::LOGGER Supervisor::ClusterRole
|
||||
|
||||
.. zeek:enum:: Supervisor::MANAGER Supervisor::ClusterRole
|
||||
|
||||
.. zeek:enum:: Supervisor::PROXY Supervisor::ClusterRole
|
||||
|
||||
.. zeek:enum:: Supervisor::WORKER Supervisor::ClusterRole
|
||||
|
||||
The role a supervised-node will play in Zeek's Cluster Framework.
|
||||
|
||||
.. zeek:type:: Supervisor::NodeConfig
|
||||
:source-code: base/frameworks/supervisor/api.zeek 38 73
|
||||
|
||||
:Type: :zeek:type:`record`
|
||||
|
||||
|
||||
.. zeek:field:: name :zeek:type:`string`
|
||||
|
||||
The name of the supervised node. These are unique within a given
|
||||
supervised process tree and typically human-readable.
|
||||
|
||||
|
||||
.. zeek:field:: interface :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The interface name from which the node will read/analyze packets.
|
||||
|
||||
|
||||
.. zeek:field:: pcap_file :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The PCAP file name from which the node will read/analyze packets.
|
||||
|
||||
|
||||
.. zeek:field:: directory :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The working directory that the node should use.
|
||||
|
||||
|
||||
.. zeek:field:: stdout_file :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The filename/path to which the node's stdout will be redirected.
|
||||
|
||||
|
||||
.. zeek:field:: stderr_file :zeek:type:`string` :zeek:attr:`&optional`
|
||||
|
||||
The filename/path to which the node's stderr will be redirected.
|
||||
|
||||
|
||||
.. zeek:field:: bare_mode :zeek:type:`bool` :zeek:attr:`&optional`
|
||||
|
||||
Whether to start the node in bare mode. When left out, the node
|
||||
inherits the bare-mode status the supervisor itself runs with.
|
||||
|
||||
|
||||
.. zeek:field:: addl_base_scripts :zeek:type:`vector` of :zeek:type:`string` :zeek:attr:`&default` = ``[]`` :zeek:attr:`&optional`
|
||||
|
||||
Additional script filenames/paths that the node should load
|
||||
after the base scripts, and prior to any user-specified ones.
|
||||
|
||||
|
||||
.. zeek:field:: addl_user_scripts :zeek:type:`vector` of :zeek:type:`string` :zeek:attr:`&default` = ``[]`` :zeek:attr:`&optional`
|
||||
|
||||
Additional script filenames/paths that the node should load
|
||||
after any user-specified scripts.
|
||||
|
||||
|
||||
.. zeek:field:: env :zeek:type:`table` [:zeek:type:`string`] of :zeek:type:`string` :zeek:attr:`&default` = ``{ }`` :zeek:attr:`&optional`
|
||||
|
||||
Environment variables to define in the supervised node.
|
||||
|
||||
|
||||
.. zeek:field:: cpu_affinity :zeek:type:`int` :zeek:attr:`&optional`
|
||||
|
||||
A cpu/core number to which the node will try to pin itself.
|
||||
|
||||
|
||||
.. zeek:field:: cluster :zeek:type:`table` [:zeek:type:`string`] of :zeek:type:`Supervisor::ClusterEndpoint` :zeek:attr:`&default` = ``{ }`` :zeek:attr:`&optional`
|
||||
|
||||
The Cluster Layout definition. Each node in the Cluster Framework
|
||||
knows about the full, static cluster topology to which it belongs.
|
||||
Entries use node names for keys. The Supervisor framework will
|
||||
automatically translate this table into the right Cluster Framework
|
||||
configuration when spawning supervised-nodes. E.g. it will
|
||||
populate the both the CLUSTER_NODE environment variable and
|
||||
:zeek:see:`Cluster::nodes` table.
|
||||
|
||||
|
||||
Configuration options that influence behavior of a supervised Zeek node.
|
||||
|
||||
.. zeek:type:: Supervisor::NodeStatus
|
||||
:source-code: base/frameworks/supervisor/api.zeek 76 82
|
||||
|
||||
:Type: :zeek:type:`record`
|
||||
|
||||
|
||||
.. zeek:field:: node :zeek:type:`Supervisor::NodeConfig`
|
||||
|
||||
The desired node configuration.
|
||||
|
||||
|
||||
.. zeek:field:: pid :zeek:type:`int` :zeek:attr:`&optional`
|
||||
|
||||
The current or last known process ID of the node. This may not
|
||||
be initialized if the process has not yet started.
|
||||
|
||||
|
||||
The current status of a supervised node.
|
||||
|
||||
.. zeek:type:: Supervisor::Status
|
||||
:source-code: base/frameworks/supervisor/api.zeek 85 88
|
||||
|
||||
:Type: :zeek:type:`record`
|
||||
|
||||
|
||||
.. zeek:field:: nodes :zeek:type:`table` [:zeek:type:`string`] of :zeek:type:`Supervisor::NodeStatus`
|
||||
|
||||
The status of supervised nodes, keyed by node names.
|
||||
|
||||
|
||||
The current status of a set of supervised nodes.
|
||||
|
||||
Events
|
||||
######
|
||||
.. zeek:id:: Supervisor::node_status
|
||||
:source-code: base/frameworks/supervisor/api.zeek 174 174
|
||||
|
||||
:Type: :zeek:type:`event` (node: :zeek:type:`string`, pid: :zeek:type:`count`)
|
||||
|
||||
A notification event the Supervisor generates when it receives a
|
||||
status message update from the stem, indicating node has
|
||||
(re-)started.
|
||||
|
||||
|
||||
:param node: the name of a previously created node via
|
||||
:zeek:see:`Supervisor::create` indicating to which
|
||||
child process the stdout line is associated.
|
||||
|
||||
|
||||
:param pid: the process ID the stem reported for this node.
|
||||
|
||||
Hooks
|
||||
#####
|
||||
.. zeek:id:: Supervisor::stderr_hook
|
||||
:source-code: policy/frameworks/management/supervisor/main.zeek 77 92
|
||||
|
||||
:Type: :zeek:type:`hook` (node: :zeek:type:`string`, msg: :zeek:type:`string`) : :zeek:type:`bool`
|
||||
|
||||
Hooks into the stderr stream for all supervisor's child processes.
|
||||
If a hook terminates with ``break``, that will suppress output to the
|
||||
associated stream.
|
||||
|
||||
|
||||
:param node: the name of a previously created node via
|
||||
:zeek:see:`Supervisor::create` indicating to which
|
||||
child process the stdout line is associated.
|
||||
A empty value is used to indicate the message
|
||||
came from the internal supervisor stem process.
|
||||
(this should typically never happen).
|
||||
|
||||
|
||||
:param msg: line-buffered contents from the stderr of a child process.
|
||||
|
||||
.. zeek:id:: Supervisor::stdout_hook
|
||||
:source-code: policy/frameworks/management/supervisor/main.zeek 55 75
|
||||
|
||||
:Type: :zeek:type:`hook` (node: :zeek:type:`string`, msg: :zeek:type:`string`) : :zeek:type:`bool`
|
||||
|
||||
Hooks into the stdout stream for all supervisor's child processes.
|
||||
If a hook terminates with ``break``, that will suppress output to the
|
||||
associated stream.
|
||||
|
||||
|
||||
:param node: the name of a previously created node via
|
||||
:zeek:see:`Supervisor::create` indicating to which
|
||||
child process the stdout line is associated.
|
||||
An empty value is used to indicate the message
|
||||
came from the internal supervisor stem process
|
||||
(this should typically never happen).
|
||||
|
||||
|
||||
:param msg: line-buffered contents from the stdout of a child process.
|
||||
|
||||
Functions
|
||||
#########
|
||||
.. zeek:id:: Supervisor::create
|
||||
:source-code: base/frameworks/supervisor/main.zeek 12 15
|
||||
|
||||
:Type: :zeek:type:`function` (node: :zeek:type:`Supervisor::NodeConfig`) : :zeek:type:`string`
|
||||
|
||||
Create a new supervised node process.
|
||||
It's an error to call this from a process other than a Supervisor.
|
||||
|
||||
|
||||
:param node: the desired configuration for the new supervised node process.
|
||||
|
||||
|
||||
:returns: an empty string on success or description of the error/failure.
|
||||
|
||||
.. zeek:id:: Supervisor::destroy
|
||||
:source-code: base/frameworks/supervisor/main.zeek 17 20
|
||||
|
||||
:Type: :zeek:type:`function` (node: :zeek:type:`string` :zeek:attr:`&default` = ``""`` :zeek:attr:`&optional`) : :zeek:type:`bool`
|
||||
|
||||
Destroy and remove a supervised node process.
|
||||
It's an error to call this from a process other than a Supervisor.
|
||||
|
||||
|
||||
:param node: the name of the node to destroy or an empty string to mean
|
||||
"all nodes".
|
||||
|
||||
|
||||
:returns: true on success.
|
||||
|
||||
.. zeek:id:: Supervisor::is_supervised
|
||||
:source-code: base/frameworks/supervisor/main.zeek 32 35
|
||||
|
||||
:Type: :zeek:type:`function` () : :zeek:type:`bool`
|
||||
|
||||
|
||||
:returns: true if this is a supervised node process.
|
||||
|
||||
.. zeek:id:: Supervisor::is_supervisor
|
||||
:source-code: base/frameworks/supervisor/main.zeek 27 30
|
||||
|
||||
:Type: :zeek:type:`function` () : :zeek:type:`bool`
|
||||
|
||||
|
||||
:returns: true if this is the Supervisor process.
|
||||
|
||||
.. zeek:id:: Supervisor::node
|
||||
:source-code: base/frameworks/supervisor/main.zeek 37 40
|
||||
|
||||
:Type: :zeek:type:`function` () : :zeek:type:`Supervisor::NodeConfig`
|
||||
|
||||
|
||||
:returns: the node configuration if this is a supervised node.
|
||||
It's an error to call this function from a process other than
|
||||
a supervised one.
|
||||
|
||||
.. zeek:id:: Supervisor::restart
|
||||
:source-code: base/frameworks/supervisor/main.zeek 22 25
|
||||
|
||||
:Type: :zeek:type:`function` (node: :zeek:type:`string` :zeek:attr:`&default` = ``""`` :zeek:attr:`&optional`) : :zeek:type:`bool`
|
||||
|
||||
Restart a supervised node process by destroying (killing) and
|
||||
re-recreating it.
|
||||
It's an error to call this from a process other than a Supervisor.
|
||||
|
||||
|
||||
:param node: the name of the node to restart or an empty string to mean
|
||||
"all nodes".
|
||||
|
||||
|
||||
:returns: true on success.
|
||||
|
||||
.. zeek:id:: Supervisor::status
|
||||
:source-code: base/frameworks/supervisor/main.zeek 7 10
|
||||
|
||||
:Type: :zeek:type:`function` (node: :zeek:type:`string` :zeek:attr:`&default` = ``""`` :zeek:attr:`&optional`) : :zeek:type:`Supervisor::Status`
|
||||
|
||||
Retrieve current status of a supervised node process.
|
||||
It's an error to call this from a process other than a Supervisor.
|
||||
|
||||
|
||||
:param node: the name of the node to get the status of or an empty string
|
||||
to mean "all nodes".
|
||||
|
||||
|
||||
:returns: the current status of a set of nodes.
|
||||
|
||||
|
226
doc/scripts/base/frameworks/supervisor/control.zeek.rst
Normal file
226
doc/scripts/base/frameworks/supervisor/control.zeek.rst
Normal file
|
@ -0,0 +1,226 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/frameworks/supervisor/control.zeek
|
||||
=======================================
|
||||
.. zeek:namespace:: SupervisorControl
|
||||
|
||||
The Zeek process supervision (remote) control API. This defines a Broker topic
|
||||
prefix and events that can be used to control an external Zeek supervisor process.
|
||||
This API was introduced in Zeek 3.1.0 and considered unstable until 4.0.0.
|
||||
That is, it may change in various incompatible ways without warning or
|
||||
deprecation until the stable 4.0.0 release.
|
||||
|
||||
:Namespace: SupervisorControl
|
||||
:Imports: :doc:`base/frameworks/broker </scripts/base/frameworks/broker/index>`, :doc:`base/frameworks/supervisor/api.zeek </scripts/base/frameworks/supervisor/api.zeek>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
Redefinable Options
|
||||
###################
|
||||
=================================================================================== =================================================================
|
||||
:zeek:id:`SupervisorControl::enable_listen`: :zeek:type:`bool` :zeek:attr:`&redef` When enabled, the Supervisor will listen on the configured Broker
|
||||
:zeek:see:`Broker::default_listen_address`.
|
||||
:zeek:id:`SupervisorControl::topic_prefix`: :zeek:type:`string` :zeek:attr:`&redef` The Broker topic prefix to use when subscribing to Supervisor API
|
||||
requests and when publishing Supervisor API responses.
|
||||
=================================================================================== =================================================================
|
||||
|
||||
Events
|
||||
######
|
||||
================================================================== ======================================================================
|
||||
:zeek:id:`SupervisorControl::create_request`: :zeek:type:`event` Send a request to a remote Supervisor process to create a node.
|
||||
:zeek:id:`SupervisorControl::create_response`: :zeek:type:`event` Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::create_request`.
|
||||
:zeek:id:`SupervisorControl::destroy_request`: :zeek:type:`event` Send a request to a remote Supervisor process to destroy a node.
|
||||
:zeek:id:`SupervisorControl::destroy_response`: :zeek:type:`event` Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::destroy_request`.
|
||||
:zeek:id:`SupervisorControl::node_status`: :zeek:type:`event` A notification event the Supervisor generates when it receives a
|
||||
status message update from the stem, indicating node has
|
||||
(re-)started.
|
||||
:zeek:id:`SupervisorControl::restart_request`: :zeek:type:`event` Send a request to a remote Supervisor process to restart a node.
|
||||
:zeek:id:`SupervisorControl::restart_response`: :zeek:type:`event` Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::restart_request`.
|
||||
:zeek:id:`SupervisorControl::status_request`: :zeek:type:`event` Send a request to a remote Supervisor process to retrieve node status.
|
||||
:zeek:id:`SupervisorControl::status_response`: :zeek:type:`event` Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::status_request`.
|
||||
:zeek:id:`SupervisorControl::stop_request`: :zeek:type:`event` Send a request to a remote Supervisor to stop and shutdown its
|
||||
process tree.
|
||||
================================================================== ======================================================================
|
||||
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
Redefinable Options
|
||||
###################
|
||||
.. zeek:id:: SupervisorControl::enable_listen
|
||||
:source-code: base/frameworks/supervisor/control.zeek 21 21
|
||||
|
||||
:Type: :zeek:type:`bool`
|
||||
:Attributes: :zeek:attr:`&redef`
|
||||
:Default: ``F``
|
||||
:Redefinition: from :doc:`/scripts/policy/frameworks/management/agent/boot.zeek`
|
||||
|
||||
``=``::
|
||||
|
||||
T
|
||||
|
||||
|
||||
When enabled, the Supervisor will listen on the configured Broker
|
||||
:zeek:see:`Broker::default_listen_address`.
|
||||
|
||||
.. zeek:id:: SupervisorControl::topic_prefix
|
||||
:source-code: base/frameworks/supervisor/control.zeek 17 17
|
||||
|
||||
:Type: :zeek:type:`string`
|
||||
:Attributes: :zeek:attr:`&redef`
|
||||
:Default: ``"zeek/supervisor"``
|
||||
|
||||
The Broker topic prefix to use when subscribing to Supervisor API
|
||||
requests and when publishing Supervisor API responses. If you are
|
||||
publishing Supervisor requests, this is also the prefix string to use
|
||||
for their topic names.
|
||||
|
||||
Events
|
||||
######
|
||||
.. zeek:id:: SupervisorControl::create_request
|
||||
:source-code: base/frameworks/supervisor/main.zeek 73 81
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, node: :zeek:type:`Supervisor::NodeConfig`)
|
||||
|
||||
Send a request to a remote Supervisor process to create a node.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string that will be directly echoed in the response
|
||||
|
||||
|
||||
:param node: the desired configuration for the new supervised node process.
|
||||
|
||||
.. zeek:id:: SupervisorControl::create_response
|
||||
:source-code: policy/frameworks/management/agent/main.zeek 286 308
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, result: :zeek:type:`string`)
|
||||
|
||||
Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::create_request`.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string matching the value in the original request.
|
||||
|
||||
|
||||
:param result: the return value of the remote call to
|
||||
:zeek:see:`Supervisor::create`.
|
||||
|
||||
.. zeek:id:: SupervisorControl::destroy_request
|
||||
:source-code: base/frameworks/supervisor/main.zeek 83 91
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, node: :zeek:type:`string`)
|
||||
|
||||
Send a request to a remote Supervisor process to destroy a node.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string that will be directly echoed in the response
|
||||
|
||||
|
||||
:param node: the name of the node to destroy or empty string to mean "all
|
||||
nodes".
|
||||
|
||||
.. zeek:id:: SupervisorControl::destroy_response
|
||||
:source-code: policy/frameworks/management/agent/main.zeek 310 332
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, result: :zeek:type:`bool`)
|
||||
|
||||
Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::destroy_request`.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string matching the value in the original request.
|
||||
|
||||
|
||||
:param result: the return value of the remote call to
|
||||
:zeek:see:`Supervisor::destroy`.
|
||||
|
||||
.. zeek:id:: SupervisorControl::node_status
|
||||
:source-code: base/frameworks/supervisor/control.zeek 105 105
|
||||
|
||||
:Type: :zeek:type:`event` (node: :zeek:type:`string`, pid: :zeek:type:`count`)
|
||||
|
||||
A notification event the Supervisor generates when it receives a
|
||||
status message update from the stem, indicating node has
|
||||
(re-)started. This is the remote equivalent of
|
||||
:zeek:see:`Supervisor::node_status`.
|
||||
|
||||
|
||||
:param node: the name of a previously created node via
|
||||
:zeek:see:`Supervisor::create` indicating to which
|
||||
child process the stdout line is associated.
|
||||
|
||||
|
||||
:param pid: the process ID the stem reported for this node.
|
||||
|
||||
.. zeek:id:: SupervisorControl::restart_request
|
||||
:source-code: base/frameworks/supervisor/main.zeek 93 101
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, node: :zeek:type:`string`)
|
||||
|
||||
Send a request to a remote Supervisor process to restart a node.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string that will be directly echoed in the response
|
||||
|
||||
|
||||
:param node: the name of the node to restart or empty string to mean "all
|
||||
nodes".
|
||||
|
||||
.. zeek:id:: SupervisorControl::restart_response
|
||||
:source-code: policy/frameworks/management/agent/main.zeek 334 357
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, result: :zeek:type:`bool`)
|
||||
|
||||
Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::restart_request`.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string matching the value in the original request.
|
||||
|
||||
|
||||
:param result: the return value of the remote call to
|
||||
:zeek:see:`Supervisor::restart`.
|
||||
|
||||
.. zeek:id:: SupervisorControl::status_request
|
||||
:source-code: base/frameworks/supervisor/main.zeek 63 71
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, node: :zeek:type:`string`)
|
||||
|
||||
Send a request to a remote Supervisor process to retrieve node status.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string that will be directly echoed in the response
|
||||
|
||||
|
||||
:param node: the name of the node to get status of or empty string to mean "all
|
||||
nodes".
|
||||
|
||||
.. zeek:id:: SupervisorControl::status_response
|
||||
:source-code: policy/frameworks/management/agent/main.zeek 271 284
|
||||
|
||||
:Type: :zeek:type:`event` (reqid: :zeek:type:`string`, result: :zeek:type:`Supervisor::Status`)
|
||||
|
||||
Handle a response from a Supervisor process that received
|
||||
:zeek:see:`SupervisorControl::status_request`.
|
||||
|
||||
|
||||
:param reqid: an arbitrary string matching the value in the original request.
|
||||
|
||||
|
||||
:param result: the return value of the remote call to
|
||||
:zeek:see:`Supervisor::status`.
|
||||
|
||||
.. zeek:id:: SupervisorControl::stop_request
|
||||
:source-code: base/frameworks/supervisor/main.zeek 55 61
|
||||
|
||||
:Type: :zeek:type:`event` ()
|
||||
|
||||
Send a request to a remote Supervisor to stop and shutdown its
|
||||
process tree. There is no response to this message as the Supervisor
|
||||
simply terminates on receipt.
|
||||
|
||||
|
29
doc/scripts/base/frameworks/supervisor/index.rst
Normal file
29
doc/scripts/base/frameworks/supervisor/index.rst
Normal file
|
@ -0,0 +1,29 @@
|
|||
:orphan:
|
||||
|
||||
Package: base/frameworks/supervisor
|
||||
===================================
|
||||
|
||||
|
||||
:doc:`/scripts/base/frameworks/supervisor/api.zeek`
|
||||
|
||||
The Zeek process supervision API.
|
||||
This API was introduced in Zeek 3.1.0 and considered unstable until 4.0.0.
|
||||
That is, it may change in various incompatible ways without warning or
|
||||
deprecation until the stable 4.0.0 release.
|
||||
|
||||
:doc:`/scripts/base/frameworks/supervisor/__load__.zeek`
|
||||
|
||||
|
||||
:doc:`/scripts/base/frameworks/supervisor/control.zeek`
|
||||
|
||||
The Zeek process supervision (remote) control API. This defines a Broker topic
|
||||
prefix and events that can be used to control an external Zeek supervisor process.
|
||||
This API was introduced in Zeek 3.1.0 and considered unstable until 4.0.0.
|
||||
That is, it may change in various incompatible ways without warning or
|
||||
deprecation until the stable 4.0.0 release.
|
||||
|
||||
:doc:`/scripts/base/frameworks/supervisor/main.zeek`
|
||||
|
||||
Implements Zeek process supervision API and default behavior for its
|
||||
associated (remote) control events.
|
||||
|
16
doc/scripts/base/frameworks/supervisor/main.zeek.rst
Normal file
16
doc/scripts/base/frameworks/supervisor/main.zeek.rst
Normal file
|
@ -0,0 +1,16 @@
|
|||
:tocdepth: 3
|
||||
|
||||
base/frameworks/supervisor/main.zeek
|
||||
====================================
|
||||
|
||||
Implements Zeek process supervision API and default behavior for its
|
||||
associated (remote) control events.
|
||||
|
||||
:Imports: :doc:`base/frameworks/supervisor/api.zeek </scripts/base/frameworks/supervisor/api.zeek>`, :doc:`base/frameworks/supervisor/control.zeek </scripts/base/frameworks/supervisor/control.zeek>`
|
||||
|
||||
Summary
|
||||
~~~~~~~
|
||||
|
||||
Detailed Interface
|
||||
~~~~~~~~~~~~~~~~~~
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue