Report files opened while executing a command
Project description
pystrace
Python library and command line tool for collecting strace events
Purpose
This library works as wrapper for strace generating syscall events that may be used by applications for system calls activity analisys.
In order to be able to handle long process executions without massive log generation, the library uses a multiprocess architecture. The main process runs strace with the output being sent to a name FIFO, a secondary process consumes the data from the FIFO, parses, and generates the events.
Install
pip3 install --user pystrace
How to use (Lib)
from pystrace import Tracer
def on_event(event):
print(event)
my_tracer = Tracer(["id"], on_event, filter_syscalls="file", filter_return="successful")
my_tracer.run()
How to use (command ine tool)
pystrace -- command
Example:
# Trace only file related syscalls with successful result
pystrace -s file -r successful -- who
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pystrace-0.0.1.tar.gz
(11.4 kB
view hashes)
Built Distribution
Close
Hashes for pystrace-0.0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | af489259de45c0518f7bba17d823fad21096795a103690e7ffa7741186e8c5fa |
|
MD5 | 2ca29f36aef8ec94e4508e619189437a |
|
BLAKE2b-256 | 2122e30ccbfe3e0f1e1fc82a5c0a5d7e3b030a6aa90522f3edb599a36beec850 |