StatusPage is the #1 status and incident communication tool.
Install-Package BeatPulse.StatusPageTracker
public class Startup
{
public void ConfigureServices(IServiceCollection services)
{
services.AddBeatPulse(setup =>
{
setup.AddStatusPageTracker(opt =>
{
opt.PageId = "your-page-id";
opt.ComponentId = "your-component-id";
opt.ApiKey = "your-api.key";
opt.IncidentName = "BeatPulse mark this component as outage";
});
});
}
}