Interface TimeMetricSummary

    • Method Detail

      • min

        Duration min()
        Gets the minimum collected value.
      • max

        Duration max()
        Gets the maximum collected value.
      • mean

        Duration mean()
        Gets the mean/average of collected values.
      • median

        Duration median()
        Gets the median of collected values.

        The median is the same as percentile 50, and is the value for which 50% of the collected values is smaller/greater.

        This value might differ from mean() when distribution of values is not symmetric.

      • perc90

        Duration perc90()
        Gets the 90 percentile of samples times.

        90% of samples took less or equal to the returned value.

      • perc95

        Duration perc95()
        Gets the 95 percentile of samples times.

        95% of samples took less or equal to the returned value.

      • perc99

        Duration perc99()
        Gets the 99 percentile of samples times.

        99% of samples took less or equal to the returned value.