OBJECT

StatAnomaly

link GraphQL Schema definition

  • type StatAnomaly {
  • # Anomaly data -1 in case of downward anomaly , +1 in case of upward anomaly and 0
  • # in case of no anomaly
  • data: [Int!]
  • # History Start time
  • historyStartTime: DateTime!
  • # Number of data points present in the time series including current and history
  • # time
  • length: Int!
  • # Lower bound value used to calculate anomalies. Stat values below this will be
  • # marked as anomalies with value -1
  • lower: [Float!]
  • # Seasonality period of the time-series
  • period: Int!
  • # Seasonality of the time-series representing whether it is seasonal or non
  • # seasonal
  • seasonal: Boolean!
  • # Anomaly timestamps in milliseconds since epoch
  • timestampsMillis: [Long!]
  • # Upper bound value used to calculate anomalies. Stat values above this will be
  • # maked as anomalies with value +1
  • upper: [Float!]
  • }