How to Create Health Checks in ASP.NET Core
If you’re using a load balancer in front of your ASP.NET Core application you will need to provide it a route where it can verify that your application is still running. Here’s an overview of how you can implement implement Health Checks in ASP.NET Core. Health Checks in ASP.NET Core If you’re using ASP.NET Core MVC, you might first think to just create a controller and action and provide that route as the health check for your load balancer. However there are alternative ways to accomplish this with middleware. Basic Middleware At the very basic level, we can create a… Read More »How to Create Health Checks in ASP.NET Core