OBJECT
PixieStackTrace
link GraphQL Schema definition
- type PixieStackTrace {
- # The command line which started the process under evaluation
- String! :
- # The number of times this stack has been seen across the entire time window
- Long! :
- # The count of all stacks reported in the time window. This is not returned in a
- # "node" aggregated flamegraph
- Long :
- # The name of the container within the pod
- String! :
- # The namespace of the pod for which the flamegraph was requested
- String! :
- # The name of the node for which the flamegraph was requested
- String! :
- # The name of the pod for which the flamegraph was requested
- String! :
- # The percentage of the time windows this stack occupies.
- Float! :
- # The number by which we must calculate percentages. This ends up being the number
- # of CPU's on the node.
- Long! :
- # A uniqueId of the current stack trace
- Long! :
- # A list, in order, of the frames for the stack reported. Most recent frame in the
- # stack is first.
- String!]! : [
- }