IAnomalyDetectorClient Interface

Definition

The Anomaly Detector API detects anomalies automatically in time series data. It supports two functionalities, one is for detecting the whole series with model trained by the timeseries, another is detecting last point with model trained by points before. By using this service, business customers can discover incidents and establish a logic flow for root cause analysis.

public interface IAnomalyDetectorClient : IDisposable
type IAnomalyDetectorClient = interface
    interface IDisposable
Public Interface IAnomalyDetectorClient
Implements IDisposable
Derived
Implements

Properties

Credentials

Subscription credentials which uniquely identify client subscription.

DeserializationSettings

Gets or sets json deserialization settings.

Endpoint

Supported Cognitive Services endpoints (protocol and hostname, for example: https://westus2.api.cognitive.microsoft.com).

SerializationSettings

The base URI of the service.

Methods

ChangePointDetectWithHttpMessagesAsync(ChangePointDetectRequest, Dictionary<String,List<String>>, CancellationToken)
EntireDetectWithHttpMessagesAsync(Request, Dictionary<String,List<String>>, CancellationToken)

Detect anomalies for the entire series in batch.

LastDetectWithHttpMessagesAsync(Request, Dictionary<String,List<String>>, CancellationToken)

Detect anomaly status of the latest point in time series.

Extension Methods

ChangePointDetectAsync(IAnomalyDetectorClient, ChangePointDetectRequest, CancellationToken)
EntireDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

Detect anomalies for the entire series in batch.

LastDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

Detect anomaly status of the latest point in time series.

Applies to