Summary

trait Summary

A Summary represents a sliding window of a time series along with metrics for certain percentiles of the time series, referred to as quantiles. Quantiles describe specified percentiles of the sliding window that are of interest. For example, if we were using a summary to track the response time for requests over the last hour then we might be interested in the 50th percentile, 90th percentile, 95th percentile, and 99th percentile for response times.

Companion:
object
class Object
trait Matchable
class Any

Value members

Abstract methods

def observe(value: Double, t: Instant): UIO[Any]

Adds the specified value to the time series represented by the summary, also recording the Instant when the value was observed

Adds the specified value to the time series represented by the summary, also recording the Instant when the value was observed