1 Answer
- Newest
- Most votes
- Most comments
1
Hey Arjun,
I’d suggest building in a a health check endpoint using something which is part of .NET which is what this is designed for, for your scenario. The load balancer or DNS probes the endpoint and it returns 200 if your .NET service is healthy and something else if it’s not.
https://learn.microsoft.com/en-us/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-8.0
Relevant content
- asked 6 years ago
- asked a year ago
- asked 10 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 7 months ago
- AWS OFFICIALUpdated 2 years ago
- AWS OFFICIALUpdated 2 years ago
Hi Gary Mclean, first of all thanks for answering. I have few questions though: