mirror of
https://github.com/zulip/zulip.git
synced 2025-11-04 22:13:26 +00:00
As a result of dropping support for trusty, we can remove our old pattern of putting `if False` before importing the typing module, which was essential for Python 3.4 support, but not required and maybe harmful on newer versions. cron_file_helper check_rabbitmq_consumers hash_reqs check_zephyr_mirror check_personal_zephyr_mirrors check_cron_file zulip_tools check_postgres_replication_lag api_test_helpers purge-old-deployments setup_venv node_cache clean_venv_cache clean_node_cache clean_emoji_cache pg_backup_and_purge restore-backup generate_secrets zulip-ec2-configure-interfaces diagnose check_user_zephyr_mirror_liveness
37 lines
999 B
Python
37 lines
999 B
Python
import time
|
|
|
|
from typing import Tuple
|
|
|
|
def nagios_from_file(results_file):
|
|
# type: (str) -> Tuple[int, str]
|
|
"""Returns a nagios-appropriate string and return code obtained by
|
|
parsing the desired file on disk. The file on disk should be of format
|
|
|
|
%s|%s % (timestamp, nagios_string)
|
|
|
|
This file is created by various nagios checking cron jobs such as
|
|
check-rabbitmq-queues and check-rabbitmq-consumers"""
|
|
|
|
with open(results_file) as f:
|
|
data = f.read().strip()
|
|
pieces = data.split('|')
|
|
|
|
if not len(pieces) == 4:
|
|
state = 'UNKNOWN'
|
|
ret = 3
|
|
data = "Results file malformed"
|
|
else:
|
|
timestamp = int(pieces[0])
|
|
|
|
time_diff = time.time() - timestamp
|
|
if time_diff > 60 * 2:
|
|
ret = 3
|
|
state = 'UNKNOWN'
|
|
data = "Results file is stale"
|
|
else:
|
|
ret = int(pieces[1])
|
|
state = pieces[2]
|
|
data = pieces[3]
|
|
|
|
return (ret, "%s: %s" % (state, data))
|