Skip to content

Commit 48da007

Browse files
authored
Update monitor-instances-health-check.md
We're trying to differentiate between when the problem is caused by customer's Web App's code and when the problem is caused by the instance (Web Worker) itself, as customers often assume the problem is the instance itself and not their code. This not only creates the false perception that the platform's instances are unstable, but also it causes unnecessary requests from customers to support to remove the "bad instance".
1 parent 5ba2d94 commit 48da007

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/app-service/monitor-instances-health-check.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ Note that _/api/health_ is just an example added for illustration purposes. We d
2020
## What App Service does with Health checks
2121

2222
- When given a path on your app, Health check pings this path on all instances of your App Service app at 1-minute intervals.
23-
- If an instance doesn't respond with a status code between 200-299 (inclusive) after 10 requests, App Service determines it's unhealthy and removes it from the load balancer for this Web App. The required number of failed requests for an instance to be deemed unhealthy is configurable to a minimum of two requests.
23+
- If a Web App running on a given instance doesn't respond with a status code between 200-299 (inclusive) after 10 requests, App Service determines it's unhealthy and removes it from the load balancer for this Web App. The required number of failed requests for an instance to be deemed unhealthy is configurable to a minimum of two requests.
2424
- After removal, Health check continues to ping the unhealthy instance. If the instance begins to respond with a healthy status code (200-299), then the instance is returned to the load balancer.
25-
- If an instance remains unhealthy for one hour, it's replaced with a new instance.
25+
- If the Web App running on an instance remains unhealthy for one hour, the instance is replaced with a new one.
2626
- When scaling out, App Service pings the Health check path to ensure new instances are ready.
2727

2828
> [!NOTE]

0 commit comments

Comments
 (0)