Python package to record activity from processes
Project description
About
psrecord is a small utility that uses the psutil library to record the CPU and memory activity of a process. The package is still under development and is therefore experimental.
The code is released under a Simplified BSD License, which is given in the LICENSE file.
Requirements
Python 2.7 or 3.3 and higher
psutil 1.0 or later
matplotlib (optional, used for plotting)
Installation
To install, simply do:
pip install psrecord
To install with the optional plotting dependencies, do:
pip install psrecord[plot]
Usage
Basics
To record the CPU and memory activity of an existing process to a file (use sudo for a root process):
psrecord 1330 --log activity.txt
where 1330 is an example of a process ID which you can find with ps or top. You can also use psrecord to start up a process by specifying the command in quotes:
psrecord "hyperion model.rtin model.rtout" --log activity.txt
Plotting
To make a plot of the activity:
psrecord 1330 --plot plot.png
This will produce a plot such as:
You can combine these options to write the activity to a file and make a plot at the same time:
psrecord 1330 --log activity.txt --plot plot.png
Duration and intervals
By default, the monitoring will continue until the process is stopped. You can also specify a maximum duration in seconds:
psrecord 1330 --log activity.txt --duration 10
Finally, the process is polled as often as possible by default, but it is possible to set the time between samples in seconds:
psrecord 1330 --log activity.txt --interval 2
Subprocesses
To include sub-processes in the CPU and memory stats, use:
psrecord 1330 --log activity.txt --include-children
Running tests
To run tests, you will need pytest. You can install it with:
pip install pytest
You can then run the tests with:
pytest psrecord
Reporting issues
Please report any issues in the issue tracker.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file psrecord-1.4.tar.gz
.
File metadata
- Download URL: psrecord-1.4.tar.gz
- Upload date:
- Size: 60.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5977185488b5670239c7389519ca84cb904dddf1101fff36e445898d871454b1 |
|
MD5 | acc90821ac815377c04e41afd9dd064b |
|
BLAKE2b-256 | 7a6af863c303eae551325f4e36cdba607f072b988da5b85742e32c7c07d69226 |
File details
Details for the file psrecord-1.4-py3-none-any.whl
.
File metadata
- Download URL: psrecord-1.4-py3-none-any.whl
- Upload date:
- Size: 10.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.12.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d07f63ac3a838a65bc9f75f32154d587d3b060d10a994eacd1805a6a03a7e713 |
|
MD5 | 5283ec8c95a6080fec58e06da7f9245d |
|
BLAKE2b-256 | 4e7267fc1af72bb876ca72b9c496e6742254a3b54099d2580cc0d4b3a557f14e |