mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
4 lines
117 B
Plaintext
4 lines
117 B
Plaintext
var https = require('https');
|
|
https.get('PING_URL').on('error', (err) => {
|
|
console.log('Ping failed: ' + err)
|
|
}); |