LifecycleMetrics

@Serializable
data class LifecycleMetrics(val startCount: Long, val stopCount: Long, val uptimeTotal: Duration, val lifetimeCurrent: Duration, val lifetimeAvg: Duration, val lifetimeMedian: Duration, val bootstrapAvg: Duration, val bootstrapMedian: Duration)

Lifecycle metrics of the store.

Constructors

Link copied to clipboard
constructor(startCount: Long, stopCount: Long, uptimeTotal: Duration, lifetimeCurrent: Duration, lifetimeAvg: Duration, lifetimeMedian: Duration, bootstrapAvg: Duration, bootstrapMedian: Duration)

Properties

Link copied to clipboard

Average bootstrap or onStart latency.

Link copied to clipboard

Median bootstrap or onStart latency.

Link copied to clipboard

Average continuous lifetime across completed runs.

Link copied to clipboard

Current continuous lifetime since last start.

Link copied to clipboard

Median continuous lifetime across completed runs.

Link copied to clipboard

Number of times the store has started.

Link copied to clipboard

Number of times the store has stopped.

Link copied to clipboard

Total uptime accumulated across restarts.