component.intervalsMethod | Method to compute intervals. In CONFIDENCE, PERCENTAGE, ABSOLUTE. | CONFIDENCE |
component.sensitivity | Detection sensitivity. For CONFIDENCE, value range is in [-25, 14]. 0 means z-score of 1. 10 means z score of 3. | 5 |
component.lookbackPeriod | Historical period to use for training. In ISO-8601 format. Requires component.monitoringGranularity, see shared parameters. Eg: P14D. If component.lookbackPeriod is not set, component.lookback is used. | |
component.pattern | Detect as an anomaly if the metric drop, rise or both directions. UP, DOWN, UP_OR_DOWN. | UP_OR_DOWN |
component.regressors | For advanced users. Additional list of features to add to the regression model. See available regressors. These additional features may help the model to learn the effect of events. Events features are created automatically. | [] ie only use event regressors |
component.forecastingProtocol | Process to use to run the detection. Used to make the alert evaluation calls and the first run of the alert faster. EXACT_REPLAY performs an exact [one-step][one-step-eval] backtracking, training one model for each point. Can be slow. FAST_REPLAY trains 1 model and then predict and updates this model incrementally. | EXACT_REPLAY |
component.seasonalityPeriod | Seasonality biggest period to learn. In ISO-8601 format. Requires component.monitoringGranularity, see shared parameters. Eg: P7D will learn weekly and smaller seasonalities. | |
component.trendMode | Trend mode as defined in ETS paper[^1] . In NONE, ADDITIVE, DAMPED. | ADDITIVE |
component.seasonalMode | Seasonal mode as defined in ETS paper[^1] . In NONE, ADDITIVE, MULTIPLICATIVE. | ADDITIVE |
component.errorMode | Error mode as defined in ETS paper[^1] . In ADDITIVE, MULTIPLICATIVE. | ADDITIVE |
component.alpha | Level smoothing factor. In [0,1] | -1 - Optimized by BOBYQA |
component.beta | Trend smoothing factor. In [0,1] | -1 - Optimized by BOBYQA |
component.gamma | Seasonal smoothing factor. In [0,1] | -1 - Optimized by BOBYQA |
component.phi | Damping factor. In [0,1]. Only used if trendMode is set to DAMPED. | -1 - Optimized by BOBYQA |
component.alphaMax | Maximum value of alpha if alpha is optimized automatically. | 0.5 |
component.alphaMin | Minimum value of alpha if alpha is optimized automatically. | 0.001 |
component.betaMax | Maximum value of beta if beta is optimized automatically. | 0.5 |
component.betaMin | Minimum value of beta if beta is optimized automatically. | 0.001 |
component.gammaMax | Maximum value of gamma if gamma is optimized automatically. | 0.5 |
component.gammaMin | Minimum value of gamma if gamma is optimized automatically. | 0.001 |
component.phiMax | Maximum value of phi if phi is optimized automatically. | 0.98 |
component.phiMin | Minimum value of phi if phi is optimized automatically. | 0.75 |