Open SvenAelterman opened 1 year ago
https://learn.microsoft.com/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-6.0
Basic Sample: builder.Services.AddHealthChecks(); and app.MapHealthChecks("/health");
builder.Services.AddHealthChecks();
app.MapHealthChecks("/health");
Third-party library for dependencies: https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks
Tutorial video (Nick Chapsas): https://www.youtube.com/watch?v=p2faw9DCSsY
https://learn.microsoft.com/aspnet/core/host-and-deploy/health-checks?view=aspnetcore-6.0
Basic Sample:
builder.Services.AddHealthChecks();
andapp.MapHealthChecks("/health");
Third-party library for dependencies: https://github.com/Xabaril/AspNetCore.Diagnostics.HealthChecks