Action required: End of Support for Microsoft Azure Load Balancer property NumberOfProbes

PRASANNA KUMAR SAI SEERAPU 0 Reputation points
2024-10-16T15:39:40.6366667+00:00

We've received a mail regarding Load balancers property NumberOfProbes will be ending support by 1 September 2027. To avoid service disruption, upgrade your apps and start using the Azure Load Balancer property ProbeThreshold before that date. 

Where can we check this property in load balancers and what steps should we take?

Azure Load Balancer
Azure Load Balancer
An Azure service that delivers high availability and network performance to applications.
475 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. ChaitanyaNaykodi-MSFT 26,966 Reputation points Microsoft Employee
    2024-10-16T22:50:55.5933333+00:00

    @PRASANNA KUMAR SAI SEERAPU

    Thank you for reaching out.

    You can check the value of the NumberOfProbes property using the Get-AzLoadBalancerProbeConfig Azure PowerShell command or use LoadBalancerProbeList Rest API

    $slb = Get-AzLoadBalancer -Name "MyLoadBalancer" -ResourceGroupName "MyResourceGroup"
    Get-AzLoadBalancerProbeConfig -Name "MyProbe" -LoadBalancer $slb
    
    
    

    Regarding the required action here:

    • There is a known issue about Health probe configuration property numberOfProbes, otherwise known as "Unhealthy threshold" in Portal, isn't respected.
    • So, the value defined in "numberOfProbes" does not take effect.
    • If you would like to have a property to control the number of successful or failed consecutive probes necessary to mark backend instances as healthy or unhealthy, please leverage the property "probeThreshold" instead. The default value for probeThreshold is set to 1
      • You should use API version 2022-05-01 or higher if you would like to adjust this property.
    • Wrt "numberOfProbes" - no Action is required from the customers (as this property was never in effect).

    Reference:

    https://learn.microsoft.com/en-us/answers/questions/2086333/tell-me-more-about-numberofprobes-in-azure-load-ba

    Hope this helps! Please let me know if you have any questions. Thank you!


    I would greatly appreciate if you could Accept the answer and close this thread

    Original posters help the community find answers faster by identifying the correct answer.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.