你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
New-AzLoadBalancerProbeConfig
创建负载均衡器的探测配置。
语法
New-AzLoadBalancerProbeConfig
-Name <String>
[-Protocol <String>]
-Port <Int32>
-IntervalInSeconds <Int32>
-ProbeCount <Int32>
[-ProbeThreshold <Int32>]
[-RequestPath <String>]
[-NoHealthyBackendsBehavior <String>]
[-DefaultProfile <IAzureContextContainer>]
[-WhatIf]
[-Confirm]
[<CommonParameters>]
说明
New-AzLoadBalancerProbeConfig cmdlet 为 Azure 负载均衡器创建探测配置。
示例
示例 1:创建探测配置
New-AzLoadBalancerProbeConfig -Name "MyProbe" -Protocol "http" -Port 80 -IntervalInSeconds 15 -ProbeCount 15 -ProbeThreshold 15 -NoHealthyBackendsBehavior "AllProbedUp"
此命令使用 HTTP 协议创建名为 MyProbe 的探测配置。 新的探测将连接到端口 80 上的负载均衡服务。
示例 2
创建负载均衡器的探测配置。 (自动生成)
New-AzLoadBalancerProbeConfig -IntervalInSeconds 15 -Name 'MyProbe' -Port 80 -ProbeCount 15 -ProbeThreshold 15 -Protocol 'http' -RequestPath 'healthcheck.aspx'
参数
-Confirm
提示你在运行 cmdlet 之前进行确认。
类型: | SwitchParameter |
别名: | cf |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-DefaultProfile
用于与 Azure 通信的凭据、帐户、租户和订阅。
类型: | IAzureContextContainer |
别名: | AzContext, AzureRmContext, AzureCredential |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |
-IntervalInSeconds
指定对负载均衡服务的每个实例的探测之间的间隔(以秒为单位)。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-Name
指定要创建的探测配置的名称。
类型: | String |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | False |
接受通配符: | False |
-NoHealthyBackendsBehavior
确定在探测到所有后端实例时负载均衡器如何处理新连接。 此参数的可接受值为:AllProbedDown 或 AllProbedUp。
类型: | String |
接受的值: | AllProbedDown, AllProbedUp |
Position: | Named |
默认值: | AllProbedDown |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Port
指定新探测应连接到负载均衡服务的端口。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ProbeCount
指定将实例视为不正常的每个实例连续失败次数。
类型: | Int32 |
Position: | Named |
默认值: | None |
必需: | True |
接受管道输入: | True |
接受通配符: | False |
-ProbeThreshold
指定连续成功或失败的探测数,以允许或拒绝传送到此终结点的流量。
类型: | Nullable<T>[Int32] |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-Protocol
指定要用于探测配置的协议。 此参数的可接受值为:Tcp 或 Http。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-RequestPath
指定要探测的负载均衡服务中的路径以确定运行状况。
类型: | String |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | True |
接受通配符: | False |
-WhatIf
显示运行该 cmdlet 时会发生什么情况。 cmdlet 未运行。
类型: | SwitchParameter |
别名: | wi |
Position: | Named |
默认值: | None |
必需: | False |
接受管道输入: | False |
接受通配符: | False |