INPUT_OBJECT

PixieFlamegraphQueryInput

link GraphQL Schema definition

  • input PixieFlamegraphQueryInput {
  • # The kubernetes cluster ID to query
  • clusterId: String!
  • # The namespace of the pod you are retrieving the flamegraph for. If this and
  • # kPodName are omitted, the flamegraph will represent the entire node.
  • kNamespace: String
  • # The node where the target of your flamegraph query resides
  • kNodeName: String!
  • # The name of the pod for which to retrieve the flamegraph - this is not required
  • # if "percentBasisEntity" is "node"
  • kPodName: String
  • # valid values are "pod" or "node". This will base the percentage calculation on
  • # whatever is specified.
  • percentBasisEntity: String!
  • # The time window for the flamegraph requested. This is always now - (minus) some
  • # time. i.e. "-5m"
  • relativeStartTime: String!
  • }