updated and fixed strace one-liners

- signed-off-by: trimstray <trimstray@gmail.com>
pull/82/head
trimstray 2019-03-27 12:02:03 +01:00
parent a073f86849
commit 74d49eb293
1 changed files with 9 additions and 3 deletions

View File

@ -1438,24 +1438,30 @@ ___
##### Tool: [strace](https://en.wikipedia.org/wiki/Strace)
###### Track child process
###### Track with child processes
```bash
strace -f -p $(pidof glusterfsd)
```
###### Track process after 30 seconds
###### Track process with 30 seconds limit
```bash
timeout 30 strace $(< /var/run/zabbix/zabbix_agentd.pid)
```
###### Track child process and redirect output to a file
###### Track processes and redirect output to a file
```bash
ps auxw | grep '[a]pache' | awk '{print " -p " $2}' | xargs strace -o /tmp/strace-apache-proc.out
```
###### Track with print time spent in each syscall and limit length of print strings
```bash
ps auxw | grep '[i]init_policy' | awk '{print " -p " $2}' | xargs strace -f -e trace=network -T -s 10000
```
###### Track the open request of a network port
```bash