PK œqhYî¶J‚ßF ßF ) nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/
Dir : /proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/beacons/ |
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64 IP: 209.182.202.254 |
Dir : //proc/self/root/opt/saltstack/salt/lib/python3.10/site-packages/salt/beacons/swapusage.py |
""" Beacon to monitor swap usage. .. versionadded:: 3003 :depends: python-psutil """ import logging import re import salt.utils.beacons try: import psutil HAS_PSUTIL = True except ImportError: HAS_PSUTIL = False log = logging.getLogger(__name__) __virtualname__ = "swapusage" def __virtual__(): if HAS_PSUTIL is False: err_msg = "psutil library is missing." log.error("Unable to load %s beacon: %s", __virtualname__, err_msg) return False, err_msg else: return __virtualname__ def validate(config): """ Validate the beacon configuration """ # Configuration for swapusage beacon should be a list of dicts if not isinstance(config, list): return False, "Configuration for swapusage beacon must be a list." else: config = salt.utils.beacons.list_to_dict(config) if "percent" not in config: return False, "Configuration for swapusage beacon requires percent." return True, "Valid beacon configuration" def beacon(config): """ Monitor the swap usage of the minion Specify thresholds for percent used and only emit a beacon if it is exceeded. .. code-block:: yaml beacons: swapusage: - percent: 13% """ ret = [] config = salt.utils.beacons.list_to_dict(config) _current_usage = psutil.swap_memory() current_usage = _current_usage.percent monitor_usage = config["percent"] if isinstance(monitor_usage, str) and "%" in monitor_usage: monitor_usage = re.sub("%", "", monitor_usage) monitor_usage = float(monitor_usage) if current_usage >= monitor_usage: ret.append({"swapusage": current_usage}) return ret