All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.strengthened.prometheus.healthchecks.HealthStatus Maven / Gradle / Ivy

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