Record Class TraceAnalyzer.TraceStats

java.lang.Object
java.lang.Record
com.loomcache.server.tracing.TraceAnalyzer.TraceStats
Enclosing class:
TraceAnalyzer

public static record TraceAnalyzer.TraceStats(int totalSpans, double avgDurationMs, double maxDurationMs, double minDurationMs, double errorRate, int errorCount, int successCount) extends Record
Trace statistics.
Since:
1.0
  • Constructor Summary

    Constructors
    Constructor
    Description
    TraceStats(int totalSpans, double avgDurationMs, double maxDurationMs, double minDurationMs, double errorRate, int errorCount, int successCount)
    Creates an instance of a TraceStats record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    double
    Returns the value of the avgDurationMs record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    int
    Returns the value of the errorCount record component.
    double
    Returns the value of the errorRate record component.
    final int
    Returns a hash code value for this object.
    double
    Returns the value of the maxDurationMs record component.
    double
    Returns the value of the minDurationMs record component.
    int
    Returns the value of the successCount record component.
    final String
    Returns a string representation of this record class.
    int
    Returns the value of the totalSpans record component.

    Methods inherited from class Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • TraceStats

      public TraceStats(int totalSpans, double avgDurationMs, double maxDurationMs, double minDurationMs, double errorRate, int errorCount, int successCount)
      Creates an instance of a TraceStats record class.
      Parameters:
      totalSpans - the value for the totalSpans record component
      avgDurationMs - the value for the avgDurationMs record component
      maxDurationMs - the value for the maxDurationMs record component
      minDurationMs - the value for the minDurationMs record component
      errorRate - the value for the errorRate record component
      errorCount - the value for the errorCount record component
      successCount - the value for the successCount 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. All components in this record class 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.
    • totalSpans

      public int totalSpans()
      Returns the value of the totalSpans record component.
      Returns:
      the value of the totalSpans record component
    • avgDurationMs

      public double avgDurationMs()
      Returns the value of the avgDurationMs record component.
      Returns:
      the value of the avgDurationMs record component
    • maxDurationMs

      public double maxDurationMs()
      Returns the value of the maxDurationMs record component.
      Returns:
      the value of the maxDurationMs record component
    • minDurationMs

      public double minDurationMs()
      Returns the value of the minDurationMs record component.
      Returns:
      the value of the minDurationMs record component
    • errorRate

      public double errorRate()
      Returns the value of the errorRate record component.
      Returns:
      the value of the errorRate record component
    • errorCount

      public int errorCount()
      Returns the value of the errorCount record component.
      Returns:
      the value of the errorCount record component
    • successCount

      public int successCount()
      Returns the value of the successCount record component.
      Returns:
      the value of the successCount record component