INPUT_OBJECT

StatsRelatedEntitiesQueryInput

link GraphQL Schema definition

  • input StatsRelatedEntitiesQueryInput {
  • # Optional endTime. If empty, defaults to now. Expressed in UTC ISO-8601 timestamp
  • endTime: DateTime
  • # Traversal to use for finding related entities.
  • # The filter matches if a traversal is found, unless the NOT logicalOperator is
  • # used.
  • entitiesTraversal: [EntityTraversalInput!]!
  • # Number of related entities to be returned
  • first: Int!
  • # Namespace or provider on which related entities stats should be queried
  • namespace: String!
  • # Optional startTime.
  • # If both startTime and endTime are null, a single latest value is fetched.
  • # If only startTime is null, it defaults to 24 hours before endTime
  • startTime: DateTime
  • # Metric key for which we want to query
  • statKey: String!
  • # Rollup type for stats on which related entities should be queried
  • statsRollupType: StatsRollupType!
  • # Sort order for rolled up stats
  • statsSortOrder: QuerySortOrder!
  • }