chrome-devtools-kotlin
5.3.0-1170846
common
chrome-devtools-kotlin
/
org.hildan.chrome.devtools.domains.browser
/
Histogram
Histogram
@
Serializable
data
class
Histogram
(
val
name
:
String
,
val
sum
:
Int
,
val
count
:
Int
,
val
buckets
:
List
<
Bucket
>
)
(
source
)
Chrome histogram.
Official doc
Members
Constructors
Histogram
Link copied to clipboard
constructor
(
name
:
String
,
sum
:
Int
,
count
:
Int
,
buckets
:
List
<
Bucket
>
)
Properties
buckets
Link copied to clipboard
val
buckets
:
List
<
Bucket
>
Buckets.
count
Link copied to clipboard
val
count
:
Int
Total number of samples.
name
Link copied to clipboard
val
name
:
String
Name.
sum
Link copied to clipboard
val
sum
:
Int
Sum of sample values.