sysdig
linux
System troubleshooting, analysis, and exploration. Capture, filter, and store systemcalls.
More info →Options (4)
-w, --writebooleanCapture all the events from the live system and save them to disk
Example:
sysdig {{[-w|--write]}} {{path/to/file}}.scap-r, --readbooleanRead events from a file and print them to screen
Example:
sysdig {{[-r|--read]}} {{path/to/file}}.scap--list-chiselsbooleanList the available chisels
Example:
sysdig {{[-cl|--list-chisels]}}-c, --chiselbooleanUse the spy_ip chisel to look at the data exchanged with ip address
Example:
sysdig {{[-c|--chisel]}} spy_ip {{ip_address}}Examples (7)
Capture all the events from the live system and print them to screen
Capture all the events from the live system and save them to disk
sysdig [-w|--write] path/to/file.scapRead events from a file and print them to screen
sysdig [-r|--read] path/to/file.scapFilter and Print all the open system calls invoked by cat
sysdig proc.name=cat and evt.type=openRegister any found plugin and use dummy as input source passing to it open params
sysdig -I dummy:'parameter'List the available chisels
sysdig [-cl|--list-chisels]Use the spy_ip chisel to look at the data exchanged with ip address
sysdig [-c|--chisel] spy_ip ip_addressmade by @shridhargupta | data from tldr-pages