Javascript

Below is an example of making a HTTP request to Monitoring from Node.js.

var https = require('https');
https.get("http://94.130.246.168/ping/your-uuid-here");

You can also send pings from a browser environment. Monitoring sets the Access-Control-Allow-Origin:* CORS header, so cross-domain AJAX requests work.

var xhr = new XMLHttpRequest();
xhr.open('GET', 'http://94.130.246.168/ping/your-uuid-here', true);
xhr.send(null);