Lines Matching refs:strace
16 * Linux tracing and strace can be used to discover the system resources
30 `strace <https://man7.org/linux/man-pages/man1/strace.1.html>`_ is a
34 to evaluate safety considerations. We use strace tool to trace workloads.
36 This method of tracing using strace tells us the system calls invoked by
53 strace tool can be used to trace system calls made by a process and signals
57 Linux is used to provide access to a file in the file system. strace enables
61 You can generate profiling data combining strace and perf record tools to
67 We used strace to trace the perf, stress-ng, paxtest workloads to illustrate
76 or a virtual machine. Most distributions will include strace command. Let’s
100 As mentioned earlier, we used strace to trace perf bench, stress-ng and
139 What is strace and how do we use it?
142 As mentioned earlier, strace which is a useful diagnostic, instructional,
153 In addition, strace can generate run-time statistics on times, calls, and
159 strace command supports basic, verbose, and stats modes. strace command when
163 Running strace -c generates a report of the percentage of time spent in each
168 * Usage: strace <command we want to trace>
169 * Verbose mode usage: strace -v <command>
170 * Gather statistics: strace -c <command>
322 strace -c perf bench all
432 strace -c stress-ng --netdev 1 -t 60 --metrics
526 strace -c paxtest kiddie
595 information on the resources in use by workloads using strace.
602 * `strace <https://man7.org/linux/man-pages/man1/strace.1.html>`_