OBJECT

Stat

Time-series stat

link GraphQL Schema definition

  • type Stat {
  • # Samples of numeric stats
  • data: [Float!]
  • # Forecast data
  • forecast: StatForecast
  • # Stat key e.g. cpu_alloc, cpu_demand etc. - populated when available, but some
  • # queries may aggregate across keys
  • key: String
  • # Stats namespace
  • namespace: String!
  • # Stat tags in the form of key/value pairs
  • tags: [Tag!]
  • # Sample timestamps in milliseconds since epoch
  • timestampsMillis: [Long!]
  • # Samples of string/enum stats
  • values: [String!]
  • }