com.github.strengthened.prometheus.healthchecks.HealthStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of prometheus-healthchecks Show documentation
Show all versions of prometheus-healthchecks Show documentation
Metrics collector for Healthcheck system.
The newest version!
package com.github.strengthened.prometheus.healthchecks;
/**
* Enum representing health states.
*/
public enum HealthStatus {
/** Healthy system. */
HEALTHY(1.0),
/** Unhealthy system. */
UNHEALTHY(0.0);
public double value;
private HealthStatus(double value) {
this.value = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy