Record Class ClusterHealthMonitor.HealthAlert

java.lang.Object
java.lang.Record
com.loomcache.server.cluster.ClusterHealthMonitor.HealthAlert
Enclosing class:
ClusterHealthMonitor

public static record ClusterHealthMonitor.HealthAlert(String metric, double threshold, double currentValue, Instant timestamp, ClusterHealthMonitor.AlertSeverity severity) extends Record
Health alert record.
  • Constructor Details

    • HealthAlert

      public HealthAlert(String metric, double threshold, double currentValue, Instant timestamp, ClusterHealthMonitor.AlertSeverity severity)
      Creates an instance of a HealthAlert record class.
      Parameters:
      metric - the value for the metric record component
      threshold - the value for the threshold record component
      currentValue - the value for the currentValue record component
      timestamp - the value for the timestamp record component
      severity - the value for the severity record component
  • Method Details

    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with the compare method from their corresponding wrapper classes.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • metric

      public String metric()
      Returns the value of the metric record component.
      Returns:
      the value of the metric record component
    • threshold

      public double threshold()
      Returns the value of the threshold record component.
      Returns:
      the value of the threshold record component
    • currentValue

      public double currentValue()
      Returns the value of the currentValue record component.
      Returns:
      the value of the currentValue record component
    • timestamp

      public Instant timestamp()
      Returns the value of the timestamp record component.
      Returns:
      the value of the timestamp record component
    • severity

      Returns the value of the severity record component.
      Returns:
      the value of the severity record component