Histogram

@Serializable
data class Histogram(val name: String, val sum: Int, val count: Int, val buckets: List<Bucket>)

Chrome histogram.

Official doc

Constructors

Link copied to clipboard
constructor(name: String, sum: Int, count: Int, buckets: List<Bucket>)

Properties

Link copied to clipboard

Buckets.

Link copied to clipboard
val count: Int

Total number of samples.

Link copied to clipboard

Name.

Link copied to clipboard
val sum: Int

Sum of sample values.