service_status.py 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. import psutil
  2. import requests
  3. from datetime import datetime
  4. from pathlib import Path
  5. import config
  6. def get_service(name):
  7. service = None
  8. try:
  9. service = psutil.win_service_get(name)
  10. service = service.as_dict()
  11. if service['pid']:
  12. service['process'] = psutil.Process(service['pid']).as_dict()
  13. else:
  14. service['process'] = ''
  15. except Exception as ex:
  16. print(str(ex))
  17. return service
  18. def process_info(program_path):
  19. offset = len(program_path) + 1
  20. info = []
  21. for p in psutil.process_iter():
  22. try:
  23. if p.exe().startswith(program_path):
  24. info.append({
  25. 'path': p.exe()[offset:],
  26. 'memory': str(p.memory_info().rss // 1048576),
  27. 'cpu': str(p.cpu_percent())
  28. })
  29. except psutil.AccessDenied:
  30. pass
  31. return sorted(info, key=lambda x: x['path'])
  32. def service_status(name, stats=False):
  33. service = get_service(name)
  34. if not service:
  35. print(f"Dienst '{name}' nicht vorhanden !!")
  36. return
  37. print(f"Dienst {service['display_name']} ({name})... ", end='')
  38. if service['status'] != 'running':
  39. print('inaktiv!')
  40. print(f"!! Fehler: Status {service['status']} !!")
  41. return
  42. print("läuft.")
  43. delta = (datetime.now() - datetime.fromtimestamp(service['process']['create_time'])).total_seconds()
  44. uptime = "{0:n} Tage, {1:n} Stunden, {2:n} Minuten".format(
  45. delta // 86400, (delta % 86400) // 3600, ((delta % 86400) % 3600) // 60)
  46. print(f" Pfad: {service['process']['exe']} ")
  47. print(f" Laufzeit: {uptime} ")
  48. # print(f" Speichernutzung: {service['process']['memory_info'].rss//1048576}")
  49. if not stats:
  50. return
  51. program_path = str(Path(service['process']['exe']).parent.parent)
  52. print('')
  53. print(' Prozess RAM CPU')
  54. for info in process_info(program_path):
  55. print(' ' + info['path'].ljust(32) + (info['memory'] + ' MB').rjust(8) + (info['cpu'] + ' %').rjust(9))
  56. def webservice_status(site):
  57. print(f"Cognos-Webservice {site}... ", end='')
  58. try:
  59. res = requests.get(site)
  60. if res.status_code not in [200, 441]:
  61. print(res.status_code)
  62. if b'DPR-ERR-2109' in res.content:
  63. print('!! Fehler: Dienst wird noch gestartet, Dispatcher ist nicht erreichbar !!')
  64. else:
  65. print('online.')
  66. if site.endswith('health'):
  67. print(res.json())
  68. except requests.ConnectionError:
  69. print('OFFLINE !!')
  70. print('!! Fehler: Dienst ist nicht erreichbar !!')
  71. return
  72. def cognos11_services():
  73. service_status('apacheds-cognos')
  74. service_status('MsgServ')
  75. service_status('ol_cognoscm')
  76. service_status('IBM Cognos', stats=True)
  77. cfg = config.Config()
  78. webservice_status(cfg.cognos_url)
  79. webservice_status(cfg.cognos_url + 'health')
  80. if __name__ == '__main__':
  81. cognos11_services()