1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 17:19:47 +01:00
tldr/pages/linux/sysdig.md
Angad Singh Grover 39c7412619
getfattr, setfattr, sysdig: add page (#13921)
* sysdig

* Add periods and colons

* Modified with recommended changes

* Fix typo

* Attribute

* Made fixes

* Removed spaces

* Newline

* Design changes

* Corrected link and attribute name

---------

Co-authored-by: Wiktor Perskawiec <git@spageektti.cc>
2024-10-02 15:36:31 +02:00

33 lines
817 B
Markdown

# sysdig
> System troubleshooting, analysis and exploration.
> Capture, filter and store systemcalls.
> More information: <https://github.com/draios/sysdig/wiki>.
- Capture all the events from the live system and print them to screen:
`sysdig`
- Capture all the events from the live system and save them to disk:
`sysdig -w {{path/to/file}}.scap`
- Read events from a file and print them to screen:
`sysdig -r {{path/to/file}}.scap`
- Filter and Print all the open system calls invoked by cat:
`sysdig proc.name=cat and evt.type=open`
- Register any found plugin and use dummy as input source passing to it open params:
`sysdig -I dummy:'{{parameter}}'`
- List the available chisels:
`sysdig -cl`
- Use the spy_ip chisel to look at the data exchanged with ip address:
`sysdig -c spy_ip {{ip_address}}`