SamplingProfileNode

@Serializable
data class SamplingProfileNode(val size: Double, val total: Double, val stack: List<String>)

Heap profile sample.

Official doc

Constructors

Link copied to clipboard
constructor(size: Double, total: Double, stack: List<String>)

Properties

Link copied to clipboard

Size of the sampled allocation.

Link copied to clipboard

Execution stack at the point of allocation.

Link copied to clipboard

Total bytes attributed to this sample.