Orleans Health Checks using ASP.NET Core
One of the nicest things with the introduction of the Generic Host in Orleans v3.0 is that it allows you to run Orleans side by side with ASP.NET Core. One of the main benefits that I could think of is creating Orleans health checks using ASP.NET Core Health Checks. Co-Hosting Since Orleans 3.0, there is now support for the GenericHost via extensions on IHostBuilder, this allows you to run multiple services within the same process all sharing things such as logging, services, configuration, etc. In a recent blog post, I covered how you can co-host Orleans and ASP.NET Core. This… Read More »Orleans Health Checks using ASP.NET Core