detect_multivariate_last_anomalies
Creates, updates, deletes, gets or lists a detect_multivariate_last_anomalies resource.
Overview
| Name | detect_multivariate_last_anomalies |
| Type | Resource |
| Id | azure.ai_anomaly_detector.detect_multivariate_last_anomalies |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
detect_multivariate_last_anomaly | exec | model_id, endpoint, api_version, variables, topContributorCount | Detect anomalies in the last point of the request body. Submit multivariate anomaly detection task with the modelId of trained model and inference data, and the inference data should be put into request body in a JSON format. The request will complete synchronously and return the detection immediately in the response body. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
api_version | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ApiVersion parameter. (default: ) |
endpoint | string | The service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: ) |
model_id | string | Model identifier. Required. |
Lifecycle Methods
- detect_multivariate_last_anomaly
Detect anomalies in the last point of the request body. Submit multivariate anomaly detection task with the modelId of trained model and inference data, and the inference data should be put into request body in a JSON format. The request will complete synchronously and return the detection immediately in the response body.
EXEC azure.ai_anomaly_detector.detect_multivariate_last_anomalies.detect_multivariate_last_anomaly
@model_id='{{ model_id }}' --required,
@endpoint='{{ endpoint }}' --required,
@api_version='{{ api_version }}' --required
@@json=
'{
"variables": "{{ variables }}",
"topContributorCount": {{ topContributorCount }}
}'
;