Skip to main content

detect_multivariate_last_anomalies

Creates, updates, deletes, gets or lists a detect_multivariate_last_anomalies resource.

Overview

Namedetect_multivariate_last_anomalies
TypeResource
Idazure.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:

NameAccessible byRequired ParamsOptional ParamsDescription
detect_multivariate_last_anomalyexecmodel_id, endpoint, api_version, variables, topContributorCountDetect 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.

NameDatatypeDescription
api_versionstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client ApiVersion parameter. (default: )
endpointstringThe service endpoint host (no scheme), e.g. myaccount.table.cosmos.azure.com:443 - value of the client Endpoint parameter. (default: )
model_idstringModel identifier. Required.

Lifecycle Methods

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 }}
}'
;