Skip to content

Instantly share code, notes, and snippets.

@smling
Created February 26, 2022 23:01
Show Gist options
  • Save smling/8df7abfd5c3bd372588417ea90b95331 to your computer and use it in GitHub Desktop.
Save smling/8df7abfd5c3bd372588417ea90b95331 to your computer and use it in GitHub Desktop.
Configure health check endpoint.
public void Configure(IApplicationBuilder app, IWebHostEnvironment env)
{
// configure healthcheck endpoint.
app.UseHealthChecks("/health");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment