@franklinliu,
You can start with ping
. That would give you a rough estimation (because it does not include site/servicev processing delay). Something like this would work (Mac/Linux):
$ ping -c4 test.intelaedu.com
PING test.intelaedu.com (94.130.133.78): 56 data bytes
64 bytes from 94.130.133.78: icmp_seq=0 ttl=55 time=45.724 ms
64 bytes from 94.130.133.78: icmp_seq=1 ttl=55 time=45.940 ms
64 bytes from 94.130.133.78: icmp_seq=2 ttl=55 time=45.823 ms
64 bytes from 94.130.133.78: icmp_seq=3 ttl=55 time=45.830 ms
--- test.intelaedu.com ping statistics ---
4 packets transmitted, 4 packets received, 0.0% packet loss
round-trip min/avg/max/stddev = 45.724/45.829/45.940/0.076 ms
Next tool is curl
. This tool allows to make (and debug) actual API request, but you need to call it properly. Here is an example call:
curl -v -u "apikey:{apikey}" -X POST "https://gatewaywatsonplatform.net/assistant/api/v2/assistants/{assistant_id}/sessions?version=2018-11-08"
Please refer to API documentation for the details:
https://console.bluemix.net/apidocs/assistant-v2
-
This reply was modified 5 years, 11 months ago by intelahelp.
-
This reply was modified 5 years, 11 months ago by intelahelp.