etcd_volume.py 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. """A health check for OpenShift clusters."""
  2. from openshift_checks import OpenShiftCheck
  3. class EtcdVolume(OpenShiftCheck):
  4. """Ensures etcd storage usage does not exceed a given threshold."""
  5. name = "etcd_volume"
  6. tags = ["etcd", "health"]
  7. # Default device usage threshold. Value should be in the range [0, 100].
  8. default_threshold_percent = 90
  9. # Where to find etcd data
  10. etcd_mount_path = "/var/lib/etcd"
  11. def is_active(self):
  12. etcd_hosts = self.get_var("groups", "etcd", default=[]) or self.get_var("groups", "masters", default=[]) or []
  13. is_etcd_host = self.get_var("ansible_host") in etcd_hosts
  14. return super(EtcdVolume, self).is_active() and is_etcd_host
  15. def run(self):
  16. mount_info = self.find_ansible_mount(self.etcd_mount_path)
  17. available = mount_info["size_available"]
  18. total = mount_info["size_total"]
  19. used = total - available
  20. threshold = self.get_var(
  21. "etcd_device_usage_threshold_percent",
  22. default=self.default_threshold_percent
  23. )
  24. used_percent = 100.0 * used / total
  25. if used_percent > threshold:
  26. device = mount_info.get("device", "unknown")
  27. mount = mount_info.get("mount", "unknown")
  28. msg = "etcd storage usage ({:.1f}%) is above threshold ({:.1f}%). Device: {}, mount: {}.".format(
  29. used_percent, threshold, device, mount
  30. )
  31. return {"failed": True, "msg": msg}
  32. return {}