C

Below is an example of making a HTTP request to Monitoring from C#.

using (var client = new System.Net.WebClient())
{
       client.DownloadString("https://status.it-razvoj.si/ping/your-uuid-here");
}