OBJECT

PixieStackTrace

link GraphQL Schema definition

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