blob: cc6fd8f69e6aed79fb08c4d52395f85fc8467571 [file] [log] [blame]
Benjamin Diazde3d5702018-11-22 17:27:35 -03001# Copyright 2018 Whitestack, LLC
2# *************************************************************
3
4# This file is part of OSM Monitoring module
5# All Rights Reserved to Whitestack, LLC
6
7# Licensed under the Apache License, Version 2.0 (the "License"); you may
8# not use this file except in compliance with the License. You may obtain
9# a copy of the License at
10
11# http://www.apache.org/licenses/LICENSE-2.0
12
13# Unless required by applicable law or agreed to in writing, software
14# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
15# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
16# License for the specific language governing permissions and limitations
17# under the License.
18
19# For those usages not covered by the Apache License, Version 2.0 please
20# contact: bdiaz@whitestack.com or glavado@whitestack.com
21##
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030022import argparse
Benjamin Diaz274a6e92018-11-26 13:14:33 -030023import asyncio
Benjamin Diazde3d5702018-11-22 17:27:35 -030024import logging
25import subprocess
26import sys
Benjamin Diazde3d5702018-11-22 17:27:35 -030027
28import requests
Benjamin Diaz274a6e92018-11-26 13:14:33 -030029from aiokafka import AIOKafkaConsumer
Benjamin Diazde3d5702018-11-22 17:27:35 -030030
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030031from osm_mon.core.config import Config
Benjamin Diazde3d5702018-11-22 17:27:35 -030032
33log = logging.getLogger(__name__)
34
35
36def main():
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030037 parser = argparse.ArgumentParser(prog='osm-mon-healthcheck')
38 parser.add_argument('--config-file', nargs='?', help='MON configuration file')
39 args = parser.parse_args()
40 cfg = Config(args.config_file)
41
Benjamin Diazde3d5702018-11-22 17:27:35 -030042 if not _processes_running():
43 sys.exit(1)
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030044 if not _is_kafka_ok(cfg.get('message', 'host'), cfg.get('message', 'port')):
Benjamin Diazde3d5702018-11-22 17:27:35 -030045 sys.exit(1)
46 if not _is_prometheus_exporter_ok():
47 sys.exit(1)
48 sys.exit(0)
49
50
51def _processes_running():
52 def _contains_process(processes, process_name):
53 for row in processes:
54 if process_name in row:
55 return True
56 return False
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030057
Benjamin Diazde3d5702018-11-22 17:27:35 -030058 processes_to_check = ['osm-mon-collector', 'osm-mon-evaluator', 'osm-mon-server']
59 ps = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE).communicate()[0]
Benjamin Diaz274a6e92018-11-26 13:14:33 -030060 processes_running = ps.decode().split('\n')
Benjamin Diazde3d5702018-11-22 17:27:35 -030061 for p in processes_to_check:
62 if not _contains_process(processes_running, p):
63 return False
64 return True
65
66
67def _is_prometheus_exporter_ok():
68 try:
69 r = requests.get('http://localhost:8000')
70 r.raise_for_status()
71 return True
72 except Exception:
73 log.exception("MON Prometheus exporter is not running")
74 return False
75
76
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030077def _is_kafka_ok(host, port):
Benjamin Diaz274a6e92018-11-26 13:14:33 -030078 async def _test_kafka(loop):
Benjamin Diaz274a6e92018-11-26 13:14:33 -030079 consumer = AIOKafkaConsumer(
80 'healthcheck',
Benjamin Diaz5ac7c082019-02-06 11:58:00 -030081 loop=loop, bootstrap_servers='{}:{}'.format(host, port))
Benjamin Diaz274a6e92018-11-26 13:14:33 -030082 await consumer.start()
83 await consumer.stop()
84
Benjamin Diazde3d5702018-11-22 17:27:35 -030085 try:
Benjamin Diaz274a6e92018-11-26 13:14:33 -030086 loop = asyncio.get_event_loop()
87 loop.run_until_complete(_test_kafka(loop))
Benjamin Diazde3d5702018-11-22 17:27:35 -030088 return True
89 except Exception:
90 log.exception("MON can not connect to Kafka")
91 return False
92
93
94if __name__ == '__main__':
95 main()