I need to track read system calls for specific files, and I\'m currently doing this by parsing the output of strace. Since read operat
read
strace
You could wait for the files to be opened so you can learn the fd and attach strace after the process launch like this:
strace -p pid -e trace=file -e read=fd