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: sensehat.py
""" Monitor temperature, humidity and pressure using the SenseHat of a Raspberry Pi =============================================================================== .. versionadded:: 2017.7.0 :maintainer: Benedikt Werner <1benediktwerner@gmail.com> :maturity: new :depends: sense_hat Python module """ import logging import re import salt.utils.beacons log = logging.getLogger(__name__) def __virtual__(): return "sensehat.get_pressure" in __salt__ def validate(config): """ Validate the beacon configuration """ # Configuration for sensehat beacon should be a list if not isinstance(config, list): return False, "Configuration for sensehat beacon must be a list." else: config = salt.utils.beacons.list_to_dict(config) if "sensors" not in config: return False, "Configuration for sensehat beacon requires sensors." return True, "Valid beacon configuration" def beacon(config): """ Monitor the temperature, humidity and pressure using the SenseHat sensors. You can either specify a threshold for each value and only emit a beacon if it is exceeded or define a range and emit a beacon when the value is out of range. Units: * humidity: percent * temperature: degrees Celsius * temperature_from_pressure: degrees Celsius * pressure: Millibars .. code-block:: yaml beacons: sensehat: - sensors: humidity: 70% temperature: [20, 40] temperature_from_pressure: 40 pressure: 1500 """ ret = [] min_default = {"humidity": "0", "pressure": "0", "temperature": "-273.15"} config = salt.utils.beacons.list_to_dict(config) for sensor in config.get("sensors", {}): sensor_function = "sensehat.get_{}".format(sensor) if sensor_function not in __salt__: log.error("No sensor for meassuring %s. Skipping.", sensor) continue sensor_config = config["sensors"][sensor] if isinstance(sensor_config, list): sensor_min = str(sensor_config[0]) sensor_max = str(sensor_config[1]) else: sensor_min = min_default.get(sensor, "0") sensor_max = str(sensor_config) if isinstance(sensor_min, str) and "%" in sensor_min: sensor_min = re.sub("%", "", sensor_min) if isinstance(sensor_max, str) and "%" in sensor_max: sensor_max = re.sub("%", "", sensor_max) sensor_min = float(sensor_min) sensor_max = float(sensor_max) current_value = __salt__[sensor_function]() if not sensor_min <= current_value <= sensor_max: ret.append({"tag": "sensehat/{}".format(sensor), sensor: current_value}) return ret
Upload File
Create Folder