2015-01-27 01:03:38 +00:00
|
|
|
.. _beacons:
|
|
|
|
|
2015-01-24 06:11:34 +00:00
|
|
|
=======
|
|
|
|
Beacons
|
|
|
|
=======
|
|
|
|
|
2016-02-01 03:10:02 +00:00
|
|
|
Beacons let you use the Salt event system to monitor non-Salt processes. The
|
|
|
|
beacon system allows the minion to hook into a variety of system processes and
|
|
|
|
continually monitor these processes. When monitored activity occurs in a system
|
2016-10-06 22:05:43 +00:00
|
|
|
process, an event is sent on the Salt event bus that can be used to trigger a
|
|
|
|
:ref:`reactor <reactor>`.
|
2015-01-24 06:11:34 +00:00
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
Salt beacons can currently monitor and send Salt events for many system
|
|
|
|
activities, including:
|
2015-01-24 06:11:34 +00:00
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
- file system changes
|
|
|
|
- system load
|
|
|
|
- service status
|
|
|
|
- shell activity, such as user login
|
|
|
|
- network and disk usage
|
2015-01-24 06:11:34 +00:00
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
See :ref:`beacon modules <all-salt.beacons>` for a current list.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
Salt beacons are an event generation mechanism. Beacons leverage the Salt
|
|
|
|
:ref:`reactor <reactor>` system to make changes when beacon events occur.
|
|
|
|
|
|
|
|
|
|
|
|
Configuring Beacons
|
|
|
|
===================
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Salt beacons do not require any changes to the system components that are being
|
|
|
|
monitored, everything is configured using Salt.
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Beacons are typically enabled by placing a ``beacons:`` top level block in
|
|
|
|
``/etc/salt/minion`` or any file in ``/etc/salt/minion.d/`` such as
|
|
|
|
``/etc/salt/minion.d/beacons.conf``:
|
2015-01-24 06:11:34 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
beacons:
|
|
|
|
inotify:
|
2016-10-06 22:01:38 +00:00
|
|
|
/etc/important_file: {}
|
2015-01-24 06:11:34 +00:00
|
|
|
/opt: {}
|
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
The beacon system, like many others in Salt, can also be configured via the
|
|
|
|
minion pillar, grains, or local config file.
|
|
|
|
|
2016-07-05 16:32:49 +00:00
|
|
|
.. note::
|
|
|
|
The `inotify` beacon only works on OSes that have `inotify` kernel support.
|
2016-12-28 21:49:46 +00:00
|
|
|
Currently this excludes FreeBSD, macOS, and Windows.
|
2016-07-05 16:32:49 +00:00
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
Beacon Monitoring Interval
|
|
|
|
--------------------------
|
2015-02-27 01:00:12 +00:00
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
Beacons monitor on a 1-second interval by default. To set a different interval,
|
2016-10-06 22:05:43 +00:00
|
|
|
provide an ``interval`` argument to a beacon. The following beacons run on 5-
|
|
|
|
and 10-second intervals:
|
2015-02-27 01:00:12 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
beacons:
|
2015-05-06 22:00:37 +00:00
|
|
|
inotify:
|
2016-10-06 22:01:38 +00:00
|
|
|
/etc/important_file: {}
|
2015-05-06 22:00:37 +00:00
|
|
|
/opt: {}
|
|
|
|
interval: 5
|
2016-10-06 22:01:38 +00:00
|
|
|
disable_during_state_run: True
|
2015-02-27 01:00:12 +00:00
|
|
|
load:
|
2016-03-25 22:31:39 +00:00
|
|
|
1m:
|
2015-05-06 22:00:37 +00:00
|
|
|
- 0.0
|
|
|
|
- 2.0
|
2016-03-25 22:31:39 +00:00
|
|
|
5m:
|
2015-05-06 22:00:37 +00:00
|
|
|
- 0.0
|
|
|
|
- 1.5
|
2016-03-25 22:31:39 +00:00
|
|
|
15m:
|
2015-05-06 22:00:37 +00:00
|
|
|
- 0.1
|
|
|
|
- 1.0
|
2016-03-25 22:31:39 +00:00
|
|
|
interval: 10
|
2015-05-06 22:00:37 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
.. _avoid-beacon-event-loops:
|
|
|
|
|
2015-10-26 18:22:33 +00:00
|
|
|
Avoiding Event Loops
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
It is important to carefully consider the possibility of creating a loop
|
2016-10-06 22:05:43 +00:00
|
|
|
between a reactor and a beacon. For example, one might set up a beacon which
|
|
|
|
monitors whether a file is read which in turn fires a reactor to run a state
|
|
|
|
which in turn reads the file and re-fires the beacon.
|
2015-10-26 18:22:33 +00:00
|
|
|
|
2016-10-06 22:05:43 +00:00
|
|
|
To avoid these types of scenarios, the ``disable_during_state_run`` argument
|
|
|
|
may be set. If a state run is in progress, the beacon will not be run on its
|
|
|
|
regular interval until the minion detects that the state run has completed, at
|
|
|
|
which point the normal beacon interval will resume.
|
2015-10-26 18:22:33 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
beacons:
|
|
|
|
inotify:
|
2016-10-06 22:01:38 +00:00
|
|
|
/etc/important_file: {}
|
2015-10-26 18:22:33 +00:00
|
|
|
disable_during_state_run: True
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
.. _beacon-example:
|
2015-10-26 18:22:33 +00:00
|
|
|
|
2016-10-05 20:42:33 +00:00
|
|
|
.. note::
|
|
|
|
For beacon writers: If you need extra stuff to happen, like closing file
|
|
|
|
handles for the ``disable_during_state_run`` to actually work, you can add
|
|
|
|
a `close()` function to the beacon to run those extra things. See the
|
|
|
|
`inotify` beacon.
|
|
|
|
|
2015-09-09 17:16:55 +00:00
|
|
|
Beacon Example
|
|
|
|
==============
|
|
|
|
|
|
|
|
This example demonstrates configuring the :py:mod:`~salt.beacons.inotify`
|
2016-10-06 22:01:38 +00:00
|
|
|
beacon to monitor a file for changes, and then restores the file to its
|
|
|
|
original contents if a change was made.
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
The inotify beacon requires Pyinotify on the minion, install it using
|
|
|
|
``salt myminion pkg.install python-inotify``.
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Create Watched File
|
|
|
|
-------------------
|
|
|
|
|
|
|
|
Create the file named ``/etc/important_file`` and add some simple content:
|
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
important_config: True
|
|
|
|
|
|
|
|
Add Beacon Configs to Minion
|
|
|
|
----------------------------
|
|
|
|
|
|
|
|
On the Salt minion, add the following configuration to
|
|
|
|
``/etc/salt/minion.d/beacons.conf``:
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
beacons:
|
|
|
|
inotify:
|
|
|
|
/etc/important_file:
|
|
|
|
mask:
|
|
|
|
- modify
|
|
|
|
disable_during_state_run: True
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Save the configuration file and restart the minion service. The beacon is now
|
|
|
|
set up to notify salt upon modifications made to the file.
|
|
|
|
|
|
|
|
.. note::
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
The ``disable_during_state_run: True`` parameter :ref:`prevents
|
|
|
|
<avoid-beacon-event-loops>` the inotify beacon from generating reactor
|
|
|
|
events due to salt itself modifying the file.
|
|
|
|
|
|
|
|
.. _beacon-event-bus:
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
View Events on the Master
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
On your Salt master, start the event runner using the following command:
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
salt-run state.event pretty=true
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
This runner displays events as they are received by the master on the Salt
|
|
|
|
event bus. To test the beacon you set up in the previous section, make and save
|
|
|
|
a modification to ``/etc/important_file``. You'll see an event similar to the
|
|
|
|
following on the event bus:
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. code-block:: json
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
salt/beacon/larry/inotify//etc/important_file {
|
|
|
|
"_stamp": "2015-09-09T15:59:37.972753",
|
|
|
|
"data": {
|
|
|
|
"change": "IN_IGNORED",
|
|
|
|
"id": "larry",
|
|
|
|
"path": "/etc/important_file"
|
|
|
|
},
|
|
|
|
"tag": "salt/beacon/larry/inotify//etc/important_file"
|
|
|
|
}
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
This indicates that the event is being captured and sent correctly. Now you can
|
|
|
|
create a reactor to take action when this event occurs.
|
|
|
|
|
|
|
|
Create a Reactor
|
|
|
|
----------------
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
This reactor reverts the file named ``/etc/important_file`` to the contents
|
|
|
|
provided by salt each time it is modified.
|
|
|
|
|
|
|
|
Reactor SLS
|
|
|
|
```````````
|
|
|
|
|
|
|
|
On your Salt master, create a file named ``/srv/reactor/revert.sls``.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
If the ``/srv/reactor`` directory doesn't exist, create it.
|
|
|
|
|
|
|
|
.. code-block:: bash
|
|
|
|
|
|
|
|
mkdir -p /srv/reactor
|
|
|
|
|
|
|
|
Add the following to ``/srv/reactor/revert.sls``:
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
revert-file:
|
|
|
|
local.state.apply:
|
|
|
|
- tgt: {{ data['data']['id'] }}
|
|
|
|
- mods: maintain_important_file
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
.. note::
|
|
|
|
|
|
|
|
In addition to :ref:`setting <avoid-beacon-event-loops>`
|
|
|
|
``disable_during_state_run: True`` for an inotify beacon whose reaction is
|
|
|
|
to modify the watched file, it is important to ensure the state applied is
|
|
|
|
also :term:`idempotent`.
|
|
|
|
|
|
|
|
.. note::
|
|
|
|
|
|
|
|
The expression ``{{ data['data']['id] }}`` :ref:`is correct
|
|
|
|
<beacons-and-reactors>` as it matches the event structure :ref:`shown above
|
|
|
|
<beacon-event-bus>`.
|
|
|
|
|
|
|
|
State SLS
|
|
|
|
`````````
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Create the state sls file referenced by the reactor sls file. This state file
|
|
|
|
will be located at ``/srv/salt/maintain_important_file.sls``.
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. code-block:: yaml
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
important_file:
|
|
|
|
file.managed:
|
|
|
|
- name: /etc/important_file
|
|
|
|
- contents: |
|
|
|
|
important_config: True
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Master Config
|
|
|
|
`````````````
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
Configure the master to map the inotify beacon event to the ``revert`` reaction
|
|
|
|
in ``/etc/salt/master.d/reactor.conf``:
|
2015-09-09 17:16:55 +00:00
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
.. code-block:: yaml
|
|
|
|
|
|
|
|
reactor:
|
|
|
|
- salt/beacon/*/inotify//etc/important_file:
|
|
|
|
- /srv/reactor/revert.sls
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
.. note::
|
|
|
|
You can have only one top level ``reactor`` section, so if one already
|
2016-10-06 22:05:43 +00:00
|
|
|
exists, add this code to the existing section. See :ref:`Understanding the
|
|
|
|
Structure of Reactor Formulas <reactor-structure>` to learn more about
|
2015-09-09 17:16:55 +00:00
|
|
|
reactor SLS syntax.
|
|
|
|
|
|
|
|
|
|
|
|
Start the Salt Master in Debug Mode
|
|
|
|
-----------------------------------
|
|
|
|
|
|
|
|
To help with troubleshooting, start the Salt master in debug mode:
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
.. code-block:: bash
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
service salt-master stop
|
|
|
|
salt-master -l debug
|
|
|
|
|
|
|
|
When debug logging is enabled, event and reactor data are displayed so you can
|
|
|
|
discover syntax and other issues.
|
|
|
|
|
|
|
|
Trigger the Reactor
|
|
|
|
-------------------
|
|
|
|
|
2016-10-06 22:01:38 +00:00
|
|
|
On your minion, make and save another change to ``/etc/important_file``. On the
|
|
|
|
Salt master, you'll see debug messages that indicate the event was received and
|
|
|
|
the ``state.apply`` job was sent. When you inspect the file on the minion,
|
|
|
|
you'll see that the file contents have been restored to ``important_config:
|
|
|
|
True``.
|
2015-09-09 17:16:55 +00:00
|
|
|
|
|
|
|
All beacons are configured using a similar process of enabling the beacon,
|
2016-10-06 22:01:38 +00:00
|
|
|
writing a reactor SLS (and state SLS if needed), and mapping a beacon event to
|
|
|
|
the reactor SLS.
|
2015-02-27 01:00:12 +00:00
|
|
|
|
2015-01-24 06:11:34 +00:00
|
|
|
Writing Beacon Plugins
|
|
|
|
======================
|
|
|
|
|
2015-01-27 00:50:30 +00:00
|
|
|
Beacon plugins use the standard Salt loader system, meaning that many of the
|
|
|
|
constructs from other plugin systems holds true, such as the ``__virtual__``
|
2015-01-24 06:11:34 +00:00
|
|
|
function.
|
|
|
|
|
|
|
|
The important function in the Beacon Plugin is the ``beacon`` function. When
|
2016-10-06 22:05:43 +00:00
|
|
|
the beacon is configured to run, this function will be executed repeatedly by
|
|
|
|
the minion. The ``beacon`` function therefore cannot block and should be as
|
|
|
|
lightweight as possible. The ``beacon`` also must return a list of dicts, each
|
|
|
|
dict in the list will be translated into an event on the master.
|
2015-01-24 06:11:34 +00:00
|
|
|
|
2016-08-23 09:12:09 +00:00
|
|
|
Beacons may also choose to implement a ``__validate__`` function which
|
|
|
|
takes the beacon configuration as an argument and ensures that it
|
|
|
|
is valid prior to continuing. This function is called automatically
|
|
|
|
by the Salt loader when a beacon is loaded.
|
|
|
|
|
2015-01-27 00:51:02 +00:00
|
|
|
Please see the :py:mod:`~salt.beacons.inotify` beacon as an example.
|
2015-03-09 20:10:06 +00:00
|
|
|
|
|
|
|
The `beacon` Function
|
|
|
|
---------------------
|
|
|
|
|
|
|
|
The beacons system will look for a function named `beacon` in the module. If
|
2016-10-06 22:05:43 +00:00
|
|
|
this function is not present then the beacon will not be fired. This function
|
|
|
|
is called on a regular basis and defaults to being called on every iteration of
|
|
|
|
the minion, which can be tens to hundreds of times a second. This means that
|
|
|
|
the `beacon` function cannot block and should not be CPU or IO intensive.
|
2015-03-09 20:10:06 +00:00
|
|
|
|
|
|
|
The beacon function will be passed in the configuration for the executed
|
|
|
|
beacon. This makes it easy to establish a flexible configuration for each
|
|
|
|
called beacon. This is also the preferred way to ingest the beacon's
|
|
|
|
configuration as it allows for the configuration to be dynamically updated
|
|
|
|
while the minion is running by configuring the beacon in the minion's pillar.
|
|
|
|
|
|
|
|
The Beacon Return
|
|
|
|
-----------------
|
|
|
|
|
|
|
|
The information returned from the beacon is expected to follow a predefined
|
|
|
|
structure. The returned value needs to be a list of dictionaries (standard
|
|
|
|
python dictionaries are preferred, no ordered dicts are needed).
|
|
|
|
|
|
|
|
The dictionaries represent individual events to be fired on the minion and
|
|
|
|
master event buses. Each dict is a single event. The dict can contain any
|
2016-10-06 22:05:43 +00:00
|
|
|
arbitrary keys but the 'tag' key will be extracted and added to the tag of the
|
|
|
|
fired event.
|
2015-03-09 20:10:06 +00:00
|
|
|
|
2015-03-09 20:33:12 +00:00
|
|
|
The return data structure would look something like this:
|
|
|
|
|
|
|
|
.. code-block:: python
|
|
|
|
|
|
|
|
[{'changes': ['/foo/bar'], 'tag': 'foo'},
|
|
|
|
{'changes': ['/foo/baz'], 'tag': 'bar'}]
|
|
|
|
|
2015-03-09 20:10:06 +00:00
|
|
|
Calling Execution Modules
|
|
|
|
-------------------------
|
|
|
|
|
|
|
|
Execution modules are still the preferred location for all work and system
|
|
|
|
interaction to happen in Salt. For this reason the `__salt__` variable is
|
|
|
|
available inside the beacon.
|
|
|
|
|
|
|
|
Please be careful when calling functions in `__salt__`, while this is the
|
|
|
|
preferred means of executing complicated routines in Salt not all of the
|
|
|
|
execution modules have been written with beacons in mind. Watch out for
|
2016-10-06 22:05:43 +00:00
|
|
|
execution modules that may be CPU intense or IO bound. Please feel free to add
|
|
|
|
new execution modules and functions to back specific beacons.
|
2016-02-24 23:56:52 +00:00
|
|
|
|
|
|
|
Distributing Custom Beacons
|
|
|
|
---------------------------
|
|
|
|
|
|
|
|
Custom beacons can be distributed to minions using ``saltutil``, see
|
|
|
|
:ref:`Dynamic Module Distribution <dynamic-module-distribution>`.
|