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: network_info.py
""" Beacon to monitor statistics from ethernet adapters .. versionadded:: 2015.5.0 """ import logging import salt.utils.beacons try: import salt.utils.psutil_compat as psutil HAS_PSUTIL = True except ImportError: HAS_PSUTIL = False log = logging.getLogger(__name__) __virtualname__ = "network_info" __attrs = [ "bytes_sent", "bytes_recv", "packets_sent", "packets_recv", "errin", "errout", "dropin", "dropout", ] def _to_list(obj): """ Convert snetinfo object to list """ ret = {} for attr in __attrs: if hasattr(obj, attr): ret[attr] = getattr(obj, attr) return ret def __virtual__(): if not HAS_PSUTIL: return (False, "cannot load network_info beacon: psutil not available") return __virtualname__ def validate(config): """ Validate the beacon configuration """ VALID_ITEMS = [ "type", "bytes_sent", "bytes_recv", "packets_sent", "packets_recv", "errin", "errout", "dropin", "dropout", ] # Configuration for load beacon should be a list of dicts if not isinstance(config, list): return False, "Configuration for network_info beacon must be a list." else: config = salt.utils.beacons.list_to_dict(config) for item in config.get("interfaces", {}): if not isinstance(config["interfaces"][item], dict): return ( False, "Configuration for network_info beacon must " "be a list of dictionaries.", ) else: if not any(j in VALID_ITEMS for j in config["interfaces"][item]): return ( False, "Invalid configuration item in Beacon configuration.", ) return True, "Valid beacon configuration" def beacon(config): """ Emit the network statistics of this host. Specify thresholds for each network stat and only emit a beacon if any of them are exceeded. Emit beacon when any values are equal to configured values. .. code-block:: yaml beacons: network_info: - interfaces: eth0: type: equal bytes_sent: 100000 bytes_recv: 100000 packets_sent: 100000 packets_recv: 100000 errin: 100 errout: 100 dropin: 100 dropout: 100 Emit beacon when any values are greater than configured values. .. code-block:: yaml beacons: network_info: - interfaces: eth0: type: greater bytes_sent: 100000 bytes_recv: 100000 packets_sent: 100000 packets_recv: 100000 errin: 100 errout: 100 dropin: 100 dropout: 100 """ ret = [] config = salt.utils.beacons.list_to_dict(config) log.debug("psutil.net_io_counters %s", psutil.net_io_counters) _stats = psutil.net_io_counters(pernic=True) log.debug("_stats %s", _stats) for interface in config.get("interfaces", {}): if interface in _stats: interface_config = config["interfaces"][interface] _if_stats = _stats[interface] _diff = False for attr in __attrs: if attr in interface_config: if ( "type" in interface_config and interface_config["type"] == "equal" ): if getattr(_if_stats, attr, None) == int( interface_config[attr] ): _diff = True elif ( "type" in interface_config and interface_config["type"] == "greater" ): if getattr(_if_stats, attr, None) > int(interface_config[attr]): _diff = True else: log.debug("attr %s", getattr(_if_stats, attr, None)) else: if getattr(_if_stats, attr, None) == int( interface_config[attr] ): _diff = True if _diff: ret.append( {"interface": interface, "network_info": _to_list(_if_stats)} ) return ret
Upload File
Create Folder