This NuGet integrates Ev.ServiceBus with AspNetCore.HealthChecks.AzureServiceBus. Every resource registered within Ev.ServiceBus will be added as a health check for the application.
To make it work you just have to call .AddEvServiceBusChecks()
when adding health checks.
public void ConfigureServices(IServiceCollection services)
{
// Initialize ServiceBus
// Setup health checks
services.AddHealthChecks()
.AddEvServiceBusChecks("Custom tag 1", "Custom Tag 2");
}