me at node1 in ~ | |
strace -fc -e trace=access curl 'https://foobar.booking.com/' > /dev/null | |
Process 2390 attached | |
% time seconds usecs/call calls errors syscall | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.003180 0 6647 6643 access | |
------ ----------- ----------- --------- --------- ---------------- | |
100.00 0.003180 6647 6643 total | |
me at node1 in ~ | |
strace -f -e trace=access curl 'https://foobar.booking.com/' 2>&1 |head -10 | |
(...) | |
access("/etc/pki/nssdb", W_OK) = -1 EACCES (Permission denied) | |
access("/home/me/.pki/nssdb/.3219811409_dOeSnotExist_.db", F_OK) = -1 ENOENT (No such file or directory) | |
access("/home/me/.pki/nssdb/.3219811410_dOeSnotExist_.db", F_OK) = -1 ENOENT (No such file or directory) | |
access("/home/me/.pki/nssdb/.3219811411_dOeSnotExist_.db", F_OK) = -1 ENOENT (No such file or directory) | |
access("/home/me/.pki/nssdb/.3219811412_dOeSnotExist_.db", F_OK) = -1 ENOENT (No such file or directory) | |
access("/home/me/.pki/nssdb/.3219811413_dOeSnotExist_.db", F_OK) = -1 ENOENT (No such file or directory) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment