We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
NoDrop can compress event buffers while recording them to disk. This reduces storage usage when capturing large numbers of events.
First enable compressed recording:
nodrop record compress
This instructs NoDrop to compress recorded buffers using gzip.
Start NoDrop normally:
sudo nodrop start
During execution, NoDrop will capture events and write compressed buffers to disk.
After running your workload, stop NoDrop:
sudo nodrop stop
Compressed buffers are stored in the default directory:
/tmp/nodrop/
Files are saved using the following format:
tid-timestamp.buf.gz
Example:
/tmp/nodrop/23145-17110211234123.buf.gz
Each file contains compressed NoDrop event buffers generated by the corresponding thread.
Compressed buffers can later be decompressed or decoded for analysis.