2016-08-25

I am facing the following project. I want to create pictures showing the cpu and memory level during the execution of a set of performance test suites. I would appreciate any suggestion.

Currently the only approach I am considering is to use the command top or the python module psutil and execute them in parallel to the tests. However I was wondering whether there exists already a better approach, may be a py.test plugin.

A nice to have would be be able to compare those parameters from one execution to another.

The tests are executed Under Linux (Ubuntu).

Show more