cdk-basic-site-monitor
v0.0.2
Published
Very basic CDK construct for monitoring a site by making a HTTP(S) request regularly and reporting if the site doesn't respond (in a timely manner).
Downloads
1
Readme
CDK Basic Site Monitor
Very basic CDK construct for monitoring a site by making a HTTP(S) request regularly and reporting if the site doesn't respond (in a timely manner).
import { BasicSiteMonitor } from 'cdk-basic-site-monitor';
new BasicSiteMonitor(this, 'ExampleMonitor', {
url: 'https://example.com',
siteName: 'Example',
notificationEmails: ['[email protected]'],
});
API Reference
See API Reference for API details.