Documentation Index
Fetch the complete documentation index at: https://docs.startree.ai/llms.txt
Use this file to discover all available pages before exploring further.
Enterprise only
IMPACT label to an anomaly if the sum of the differences between predictions and observed values on a window containing the anomaly is less than a given threshold. Intuitively, it is the sum of impacts in the last n points.
Inputs
The info source is the output of the detector. Labels are applied to the anomalies of this input.Parameters
| name | description | default value |
|---|---|---|
component.threshold | If the sum of anomalies impact is below this threshold, label the anomaly. | -1 (special value - no threshold) |
component.window | Window to compute the impact. In ISO-8601 format. | |
component.impactComputationMethod | Method to compute the impact. STANDARD_AREA or ABSOLUTE_AREA. See below. | STANDARD_AREA |
component.monitoringGranularity | Granularity of the timeseries in ISO-8601 format. Should be same value as in the detector configuration. |
impactComputationMethod
STANDARD_AREA
impact = sum(actual-expected) on the windowABSOLUTE_AREA
impact = sum(abs(actual-expected)) on the window

