Skip to content

Latest commit

 

History

History
33 lines (26 loc) · 775 Bytes

statuspage_tracker.md

File metadata and controls

33 lines (26 loc) · 775 Bytes

StatusPage Tracker

About StatusPage

StatusPage is the #1 status and incident communication tool.

Installation

Install-Package BeatPulse.StatusPageTracker

Configuration

    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";
                });
            });
        }
    }