Se você executar o comando strace
usando a "flag -c", ele mostrará uma tabela e a hora será informada em segundos :
strace -c -p 3569 # 3569 is PID
strace: Process 3569 attached
^Cstrace: Process 3569 detached
% time seconds usecs/call calls errors syscall
------ ----------- ----------- --------- --------- ----------------
99.73 0.016000 8 1971 poll
0.16 0.000025 0 509 75 futex
0.06 0.000010 0 1985 1966 recvmsg
0.06 0.000009 0 2336 mprotect
0.00 0.000000 0 478 read
0.00 0.000000 0 13 write
0.00 0.000000 0 29 mmap
0.00 0.000000 0 9 munmap
0.00 0.000000 0 18 writev
0.00 0.000000 0 351 madvise
0.00 0.000000 0 1 restart_syscall
------ ----------- ----------- --------- --------- ----------------
100.00 0.016044 7700 2041 total
do homem de strace
-c
Count time, calls, and errors for each system call and report a
summary on program exit. On Linux, this attempts to show system time
(CPU time spent running in the kernel) independent of wall clock time.
If -c is used with -f or -F (below), only aggregate totals for all
traced processes are kept.