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

MonitorConfig 构造函数

定义

重载

MonitorConfig()

初始化 MonitorConfig 类的新实例。

MonitorConfig(Nullable<ProfileMonitorStatus>, Nullable<MonitorProtocol>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<MonitorConfigCustomHeadersItem>, IList<MonitorConfigExpectedStatusCodeRangesItem>)

初始化 MonitorConfig 类的新实例。

MonitorConfig()

初始化 MonitorConfig 类的新实例。

public MonitorConfig ();
Public Sub New ()

适用于

MonitorConfig(Nullable<ProfileMonitorStatus>, Nullable<MonitorProtocol>, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<MonitorConfigCustomHeadersItem>, IList<MonitorConfigExpectedStatusCodeRangesItem>)

初始化 MonitorConfig 类的新实例。

public MonitorConfig (Microsoft.Azure.Management.TrafficManager.Models.ProfileMonitorStatus? profileMonitorStatus = default, Microsoft.Azure.Management.TrafficManager.Models.MonitorProtocol? protocol = default, long? port = default, string path = default, long? intervalInSeconds = default, long? timeoutInSeconds = default, long? toleratedNumberOfFailures = default, System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.MonitorConfigCustomHeadersItem> customHeaders = default, System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.MonitorConfigExpectedStatusCodeRangesItem> expectedStatusCodeRanges = default);
new Microsoft.Azure.Management.TrafficManager.Models.MonitorConfig : Nullable<Microsoft.Azure.Management.TrafficManager.Models.ProfileMonitorStatus> * Nullable<Microsoft.Azure.Management.TrafficManager.Models.MonitorProtocol> * Nullable<int64> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.MonitorConfigCustomHeadersItem> * System.Collections.Generic.IList<Microsoft.Azure.Management.TrafficManager.Models.MonitorConfigExpectedStatusCodeRangesItem> -> Microsoft.Azure.Management.TrafficManager.Models.MonitorConfig
Public Sub New (Optional profileMonitorStatus As Nullable(Of ProfileMonitorStatus) = Nothing, Optional protocol As Nullable(Of MonitorProtocol) = Nothing, Optional port As Nullable(Of Long) = Nothing, Optional path As String = Nothing, Optional intervalInSeconds As Nullable(Of Long) = Nothing, Optional timeoutInSeconds As Nullable(Of Long) = Nothing, Optional toleratedNumberOfFailures As Nullable(Of Long) = Nothing, Optional customHeaders As IList(Of MonitorConfigCustomHeadersItem) = Nothing, Optional expectedStatusCodeRanges As IList(Of MonitorConfigExpectedStatusCodeRangesItem) = Nothing)

参数

profileMonitorStatus
Nullable<ProfileMonitorStatus>

流量管理器配置文件的配置文件级监视状态。 可能的值包括:“CheckingEndpoints”、“Online”、“已降级”、“Disabled”、“非活动”

protocol
Nullable<MonitorProtocol>

协议 (HTTP、HTTPS 或 TCP) ,用于探测终结点运行状况。 可能的值包括:“HTTP”、“HTTPS”、“TCP”

port
Nullable<Int64>

用于探测终结点运行状况的 TCP 端口。

path
String

相对于用于探测终结点运行状况的终结点域名的路径。

intervalInSeconds
Nullable<Int64>

此配置文件中终结点的监视间隔。 这是流量管理器检查此配置文件中每个终结点的运行状况的时间间隔。

timeoutInSeconds
Nullable<Int64>

此配置文件中终结点的监视器超时。 这是流量管理器允许此配置文件中的终结点响应运行状况检查的时间。

toleratedNumberOfFailures
Nullable<Int64>

在下一个失败的运行状况检查后,在此配置文件中声明终结点已降级之前,流量管理器容忍的连续失败运行状况检查的数目。

customHeaders
IList<MonitorConfigCustomHeadersItem>

自定义标头列表。

expectedStatusCodeRanges
IList<MonitorConfigExpectedStatusCodeRangesItem>

预期状态代码范围的列表。

适用于