你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

IAnomalyDetectorClient 接口

定义

异常检测器 API 会自动检测时序数据中的异常。 它支持两个功能,一个是使用由时序训练的模型来检测整个序列,另一个是使用之前按点训练的模型来检测最后一个点。 使用此服务,业务客户可以发现事件并建立逻辑流,以便进行根本原因分析。

public interface IAnomalyDetectorClient : IDisposable
type IAnomalyDetectorClient = interface
    interface IDisposable
Public Interface IAnomalyDetectorClient
Implements IDisposable
派生
实现

属性

Credentials

唯一标识客户端订阅的订阅凭据。

DeserializationSettings

获取或设置 json 反序列化设置。

Endpoint

支持的认知服务终结点 (协议和主机名,例如: https://westus2.api.cognitive.microsoft.com) 。

SerializationSettings

服务的基 URI。

方法

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

异常检测器 API 会自动检测时序数据中的异常。 它支持两个功能,一个是使用由时序训练的模型来检测整个序列,另一个是使用之前按点训练的模型来检测最后一个点。 使用此服务,业务客户可以发现事件并建立逻辑流,以便进行根本原因分析。

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

批量检测整个系列的异常情况。

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

检测时序中最新点的异常状态。

扩展方法

ChangePointDetectAsync(IAnomalyDetectorClient, ChangePointDetectRequest, CancellationToken)

异常检测器 API 会自动检测时序数据中的异常。 它支持两个功能,一个是使用由时序训练的模型来检测整个序列,另一个是使用之前按点训练的模型来检测最后一个点。 使用此服务,业务客户可以发现事件并建立逻辑流,以便进行根本原因分析。

EntireDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

批量检测整个系列的异常情况。

LastDetectAsync(IAnomalyDetectorClient, Request, CancellationToken)

检测时序中最新点的异常状态。

适用于