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
- Int!] : [
- # History Start time
- DateTime! :
- # Number of data points present in the time series including current and history
- # time
- Int! :
- # Lower bound value used to calculate anomalies. Stat values below this will be
- # marked as anomalies with value -1
- Float!] : [
- # Seasonality period of the time-series
- Int! :
- # Seasonality of the time-series representing whether it is seasonal or non
- # seasonal
- Boolean! :
- # Anomaly timestamps in milliseconds since epoch
- Long!] : [
- # Upper bound value used to calculate anomalies. Stat values above this will be
- # maked as anomalies with value +1
- Float!] : [
- }