Removes kafka check from healthcheck
[osm/POL.git] / osm_policy_module / cmd / policy_module_healthcheck.py
1 # 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 ##
22 import argparse
23 import logging
24 import subprocess
25 import sys
26
27 log = logging.getLogger(__name__)
28
29
30 def main():
31 parser = argparse.ArgumentParser(prog='osm-policy-healthcheck')
32 parser.add_argument('--config-file', nargs='?', help='POL configuration file')
33 # args = parser.parse_args()
34 # cfg = Config(args.config_file)
35
36 if not _processes_running():
37 sys.exit(1)
38 sys.exit(0)
39
40
41 def _processes_running():
42 def _contains_process(processes, process_name):
43 for row in processes:
44 if process_name in row:
45 return True
46 return False
47
48 processes_to_check = ['osm-policy-agent']
49 ps = subprocess.Popen(['ps', 'aux'], stdout=subprocess.PIPE).communicate()[0]
50 processes_running = ps.decode().split('\n')
51 for p in processes_to_check:
52 if not _contains_process(processes_running, p):
53 log.error("Process %s not running!" % p)
54 return False
55 return True
56
57
58 if __name__ == '__main__':
59 main()