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/haproxy.py |
""" Watch current connections of haproxy server backends. Fire an event when over a specified threshold. .. versionadded:: 2016.11.0 """ import logging import salt.utils.beacons log = logging.getLogger(__name__) __virtualname__ = "haproxy" def __virtual__(): """ Only load the module if haproxyctl module is installed """ if "haproxy.get_sessions" in __salt__: return __virtualname__ else: err_msg = "haproxy.get_sessions is missing." log.error("Unable to load %s beacon: %s", __virtualname__, err_msg) return False, err_msg def validate(config): """ Validate the beacon configuration """ if not isinstance(config, list): return False, "Configuration for haproxy beacon must be a list." else: config = salt.utils.beacons.list_to_dict(config) if "backends" not in config: return False, "Configuration for haproxy beacon requires backends." else: if not isinstance(config["backends"], dict): return False, "Backends for haproxy beacon must be a dictionary." else: for backend in config["backends"]: log.debug("config %s", config["backends"][backend]) if "servers" not in config["backends"][backend]: return ( False, "Backends for haproxy beacon require servers.", ) else: _servers = config["backends"][backend]["servers"] if not isinstance(_servers, list): return ( False, "Servers for haproxy beacon must be a list.", ) return True, "Valid beacon configuration" def beacon(config): """ Check if current number of sessions of a server for a specific haproxy backend is over a defined threshold. .. code-block:: yaml beacons: haproxy: - backends: www-backend: threshold: 45 servers: - web1 - web2 - interval: 120 """ ret = [] config = salt.utils.beacons.list_to_dict(config) for backend in config.get("backends", ()): backend_config = config["backends"][backend] threshold = backend_config["threshold"] for server in backend_config["servers"]: scur = __salt__["haproxy.get_sessions"](server, backend) if scur: if int(scur) > int(threshold): _server = { "server": server, "scur": scur, "threshold": threshold, } log.debug( "Emit because %s > %s for %s in %s", scur, threshold, server, backend, ) ret.append(_server) return ret