003 File Manager
Current Path:
/usr/local/lib/python3.8/site-packages/salt/beacons
usr
/
local
/
lib
/
python3.8
/
site-packages
/
salt
/
beacons
/
📁
..
📄
__init__.py
(18.16 KB)
📁
__pycache__
📄
adb.py
(5.2 KB)
📄
aix_account.py
(1.33 KB)
📄
avahi_announce.py
(8.53 KB)
📄
bonjour_announce.py
(8.21 KB)
📄
btmp.py
(8.33 KB)
📄
cert_info.py
(5.82 KB)
📄
diskusage.py
(3.35 KB)
📄
glxinfo.py
(1.84 KB)
📄
haproxy.py
(3.02 KB)
📄
inotify.py
(11.88 KB)
📄
journald.py
(2.61 KB)
📄
junos_rre_keys.py
(723 B)
📄
load.py
(5.95 KB)
📄
log_beacon.py
(3.67 KB)
📄
memusage.py
(1.57 KB)
📄
napalm_beacon.py
(11.61 KB)
📄
network_info.py
(4.66 KB)
📄
network_settings.py
(6.53 KB)
📄
pkg.py
(2.57 KB)
📄
proxy_example.py
(1.48 KB)
📄
ps.py
(2.23 KB)
📄
salt_monitor.py
(4.06 KB)
📄
salt_proxy.py
(1.81 KB)
📄
sensehat.py
(2.82 KB)
📄
service.py
(6.15 KB)
📄
sh.py
(3.1 KB)
📄
smartos_imgadm.py
(2.6 KB)
📄
smartos_vmadm.py
(3.34 KB)
📄
status.py
(4.11 KB)
📄
swapusage.py
(1.57 KB)
📄
telegram_bot_msg.py
(2.45 KB)
📄
twilio_txt_msg.py
(2.65 KB)
📄
watchdog.py
(4.79 KB)
📄
wtmp.py
(10.17 KB)
Editing: smartos_vmadm.py
""" Beacon that fires events on vm state changes .. code-block:: yaml ## minimal # - check for vm changes every 1 second (salt default) # - does not send events at startup beacons: vmadm: [] ## standard # - check for vm changes every 60 seconds # - send create event at startup for all vms beacons: vmadm: - interval: 60 - startup_create_event: True """ import logging import salt.utils.beacons __virtualname__ = "vmadm" VMADM_STATE = { "first_run": True, "vms": [], } log = logging.getLogger(__name__) def __virtual__(): """ Provides vmadm beacon on SmartOS """ if "vmadm.list" in __salt__: return True else: return ( False, "{} beacon can only be loaded on SmartOS compute nodes".format( __virtualname__ ), ) def validate(config): """ Validate the beacon configuration """ vcfg_ret = True vcfg_msg = "Valid beacon configuration" if not isinstance(config, list): vcfg_ret = False vcfg_msg = "Configuration for vmadm beacon must be a list!" return vcfg_ret, vcfg_msg def beacon(config): """ Poll vmadm for changes """ ret = [] # NOTE: lookup current images current_vms = __salt__["vmadm.list"]( keyed=True, order="uuid,state,alias,hostname,dns_domain", ) # NOTE: apply configuration if VMADM_STATE["first_run"]: log.info("Applying configuration for vmadm beacon") config = salt.utils.beacons.list_to_dict(config) if "startup_create_event" not in config or not config["startup_create_event"]: VMADM_STATE["vms"] = current_vms # NOTE: create events for uuid in current_vms: event = {} if uuid not in VMADM_STATE["vms"]: event["tag"] = "created/{}".format(uuid) for label in current_vms[uuid]: if label == "state": continue event[label] = current_vms[uuid][label] if event: ret.append(event) # NOTE: deleted events for uuid in VMADM_STATE["vms"]: event = {} if uuid not in current_vms: event["tag"] = "deleted/{}".format(uuid) for label in VMADM_STATE["vms"][uuid]: if label == "state": continue event[label] = VMADM_STATE["vms"][uuid][label] if event: ret.append(event) # NOTE: state change events for uuid in current_vms: event = {} if ( VMADM_STATE["first_run"] or uuid not in VMADM_STATE["vms"] or current_vms[uuid].get("state", "unknown") != VMADM_STATE["vms"][uuid].get("state", "unknown") ): event["tag"] = "{}/{}".format( current_vms[uuid].get("state", "unknown"), uuid ) for label in current_vms[uuid]: if label == "state": continue event[label] = current_vms[uuid][label] if event: ret.append(event) # NOTE: update stored state VMADM_STATE["vms"] = current_vms # NOTE: disable first_run if VMADM_STATE["first_run"]: VMADM_STATE["first_run"] = False return ret # vim: tabstop=4 expandtab shiftwidth=4 softtabstop=4
Upload File
Create Folder