Skip to content

Instantly share code, notes, and snippets.

@bitbonsai
Created November 7, 2017 14:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bitbonsai/6824f7ca3c2384d9866636d3966499ab to your computer and use it in GitHub Desktop.
Save bitbonsai/6824f7ca3c2384d9866636d3966499ab to your computer and use it in GitHub Desktop.
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