Hello @ACDBA
Welcome to Microsoft Q&A Platform,
You can check the time it takes to connect including the app response time via curl (Linux), as it follows:
while :; printf '%(%H:%M:%S)T - '; do curl -o /dev/null -s -w 'Time Connect: %{time_connect} ; time_appconnect: %{time_appconnect} ;Time Total: %{time_total}\n' "http://8.8.8.8:443" -d {} -H 'content-type:application/json'; sleep 2; done
Or you can use psping for Windows:
psping -t -w 0 8.8.8.8:443 |
% { $result=("{0} - {1}" -f (Get-Date), $_) |
Select-String connecting
$result
}
I hope this helps!
----------
Please don’t forget to "Accept the answer" and “up-vote” wherever the information provided helps you, this can be beneficial to other community members.