0.0.2 • Published 5 years ago

hchk v0.0.2

Weekly downloads
1
License
ISC
Repository
github
Last release
5 years ago

Nodejs API Client for healthchecks.io

The current API Client for healthchecks.io is Nodejs module. For more details see healthchecks.io API Documentation

Get started

npm install hchk
let client = require('hchk').Client( '{API_KEY}' );

Documentation

Get a list of existing checks

client.listChecks( callback );

More details here

Create a new check

client.createCheck( data, callback );

More details here

Ping existing check

client.pingCheck( uuid, callback );

Update an existing check

client.updateCheck( uuid, data, callback );

More details here

Pause monitoring of a check

client.pauseCheck( uuid, callback );

More details here

Delete check

client.deleteCheck( uuid, callback );

More details here

Get a list of existing integrations

client.listChannels( callback );

More details here