question

Mike-Ubezzi avatar image
0 Votes"
Mike-Ubezzi asked BananiRathSRE commented

What are the detection modes of azure anomaly detector?

What are the detection modes of azure anomaly detector and how do we access them with the URI?

[Note: As we migrate from MSDN, this question has been posted by an Azure Cloud Engineer as a frequently asked question] Source: MicrosoftDocs


azure-anomaly-detector
· 3
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

buenas tardes .
cuantas cuentas gratis de azure puedo usar ?

0 Votes 0 ·

porque me sale este error : Error al cargar Marketplace.
no me deja crear una maquina virtual . no me sale las características de las que estén disponibles

0 Votes 0 ·

interesting question.

0 Votes 0 ·

1 Answer

romungi-MSFT avatar image
4 Votes"
romungi-MSFT answered BananiRathSRE commented

The Anomaly Detector API provides detection modes: batch and streaming.

Batch detection
To detect anomalies throughout a batch of data points over a given time range, use the following request URI with your time series data:

/timeseries/entire/detect.

By sending your time series data at once, the API will generate a model using the entire series, and analyze each data point with it.

Streaming detection
To continuously detect anomalies on streaming data, use the following request URI with your latest data point:

/timeseries/last/detect'.

By sending new data points as you generate them, you can monitor your data in real time. A model will be generated with the data points you send, and the API will determine if the latest point in the time series is an anomaly.


The following request URLs must be combined with the appropriate endpoint for your subscription.
For example: https://your-custom-subdomain.api.cognitive.microsoft.com/anomalydetector/v1.0/timeseries/entire/detect

Source: Azure Documentation


· 1
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

This is great

1 Vote 1 ·