Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== curl ====== ==== Check response times ==== The following is an example of a command that can be use to see the timing of various points in a HTTP request like the DNS lookup time. <code> curl -w "dnslookup: %{time_namelookup} | connect: %{time_connect} | appconnect: %{time_appconnect} | pretransfer: %{time_pretransfer} | starttransfer: %{time_starttransfer} | total: %{time_total} | size: %{size_download}\n" <URL> </code> ==== Post data to webhook and show response headers ==== <code> curl -D - -X POST --data "@sample.json" "http://172.16.60.22:8099/webhook" </code> qnd/curl.txt Last modified: 2023/05/31 12:12by mgupton