zeek/doc/scripts/base/frameworks/supervisor/control.zeek.rst
Tim Wojtulewicz ded98cd373 Copy docs into Zeek repo directly
This is based on commit 2731def9159247e6da8a3191783c89683363689c from the
zeek-docs repo.
2025-09-26 02:58:29 +00:00

226 lines
9.5 KiB
ReStructuredText

: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.