mirror of
https://github.com/healthchecks/healthchecks.git
synced 2024-11-23 07:57:39 +00:00
12 lines
271 B
Plaintext
12 lines
271 B
Plaintext
try
|
|
{
|
|
using (var client = new System.Net.Http.HttpClient())
|
|
{
|
|
client.Timeout = System.TimeSpan.FromSeconds(10);
|
|
client.GetAsync("PING_URL").Wait();
|
|
}
|
|
}
|
|
catch (System.Exception ex)
|
|
{
|
|
System.Console.WriteLine($"Ping failed: {ex.Message}");
|
|
} |