curator.py 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. """Check for an aggregated logging Curator deployment"""
  2. from openshift_checks import get_var
  3. from openshift_checks.logging.logging import LoggingCheck
  4. class Curator(LoggingCheck):
  5. """Check for an aggregated logging Curator deployment"""
  6. name = "curator"
  7. tags = ["health", "logging"]
  8. logging_namespace = None
  9. def run(self, tmp, task_vars):
  10. self.logging_namespace = get_var(task_vars, "openshift_logging_namespace", default="logging")
  11. curator_pods, error = super(Curator, self).get_pods_for_component(
  12. self.module_executor,
  13. self.logging_namespace,
  14. "curator",
  15. task_vars
  16. )
  17. if error:
  18. return {"failed": True, "changed": False, "msg": error}
  19. check_error = self.check_curator(curator_pods)
  20. if check_error:
  21. msg = ("The following Curator deployment issue was found:"
  22. "\n-------\n"
  23. "{}".format(check_error))
  24. return {"failed": True, "changed": False, "msg": msg}
  25. # TODO(lmeyer): run it all again for the ops cluster
  26. return {"failed": False, "changed": False, "msg": 'No problems found with Curator deployment.'}
  27. def check_curator(self, pods):
  28. """Check to see if curator is up and working. Returns: error string"""
  29. if not pods:
  30. return (
  31. "There are no Curator pods for the logging stack,\n"
  32. "so nothing will prune Elasticsearch indexes.\n"
  33. "Is Curator correctly deployed?"
  34. )
  35. not_running = super(Curator, self).not_running_pods(pods)
  36. if len(not_running) == len(pods):
  37. return (
  38. "The Curator pod is not currently in a running state,\n"
  39. "so Elasticsearch indexes may increase without bound."
  40. )
  41. if len(pods) - len(not_running) > 1:
  42. return (
  43. "There is more than one Curator pod running. This should not normally happen.\n"
  44. "Although this doesn't cause any problems, you may want to investigate."
  45. )
  46. return None