stack property

List<int>? stack
getter/setter pair

The call stack at the time this sample was collected. The stack is to be interpreted as top to bottom. Each element in this array is a key into the functions array in CpuSamples.

Example:

functions[stack[0]] = @Function(bar()) functions[stack[1]] = @Function(foo()) functions[stack[2]] = @Function(main())

Implementation

List<int>? stack;