OBJECT

EntityAggregationItems

link GraphQL Schema definition

  • type EntityAggregationItems implements CommonAggregationItems {
  • # The name of the aggregation, concatenates the field name and aggregation type
  • aggregationName: String!
  • # Number of distinct buckets
  • bucketCount: Long!
  • buckets: [EntityAggregationItem!]
  • # Field key for which values are being aggregated.
  • #
  • # For entities, the field format is
  • # `[[namespaces..](properties.|tags.)]`
  • field: String!
  • # Value contains the result of min, max and sum metric aggregations
  • value: Float
  • # Value contains the result of percentiles and stats metric aggregations
  • values: [EntityMetricAggregationValue!]
  • }