- Troubleshooting
- Resources
MATRIX_PROFILE
Enterprise only
Gives an anomaly score to each point using a left matrix profile algorithm1. To make the matrix profile approach better at point anomaly detection, a proprietary transformation function is applied to the matrix profile.
This detector returns an anomaly score, it does not return expected values, upper and lower bounds. This detector is recommended for granularity <= 1 hour.
Inputs
"targetProperty": "current"
: The data on which to perform detection. It should contain the historical data to use for training.
Parameters
name | description | default value |
---|---|---|
| Anomaly score threshold. Eg for | |
| Historical period to use as a reference. In ISO-8601 format. Requires | |
| Seasonality biggest period. Used to infer the window size of the matrix profile. In ISO-8601 format. Requires |
|
| For advanced users. Whether to use |
|
| Experimental. If true, attempts to compute expected values, upper and lower bounds. |
|
| Experimental. Experimental. Post-processing of the matrix profile anomaly scores. |
|
{
"name": "root",
"type": "AnomalyDetector",
"params": {
"type": "MATRIX_PROFILE",
"component.sensitivity": "2",
"component.lookbackPeriod": "P21D",
... # shared parameters
},
"inputs": [
{
"targetProperty": "current",
"sourcePlanNode": "currentData",
"sourceProperty": "currentOutput"
}
],
"outputs": []
}