A dead simple resources monitoring decorator
Project description
metrit
metrit
is a Python package designed to simplify the process of measuring the execution resources of your functions through a straightforward decorator.
Overview
The metrit
decorator is a powerful tool for accurately measuring the execution resources of Python functions, including RAM, CPU, and I/O operations. It provides insights into resource utilization and potential bottlenecks. With features like automatic recursion detection and robust handling of process isolation and monitoring, metrit
ensures precise measurements even for complex functions involving multiple processes.
Installation
You can install metrit
using pip:
pip install metrit
Usage
Utilizing the metrit
decorator is simple and intuitive. Follow this section to learn how to make the most of its capabilities.
Basic Usage
Below are some examples demonstrating metrit
's usage:
from metrit import metrit
@metrit
def my_function():
# Normal code of your function
pass
my_function()
This will output something like:
Function 'my_function' 24.00KB avg of memory 0.00% avg of CPU 239B IO reads 2.05KB IO writes.
Advanced Usage
You can customize the behavior of the metrit
decorator using various Parameters. Here is an example:
from metrit import metrit
@metrit(verbose=True, find_children=True, isolate=True)
def my_function_with_args(a:int = 1, b:int = 2):
return a + b
result = my_function_with_args(1, b=2)
This will provide detailed output:
***** metrit data for function my_function_with_args: *****
Args: (1,).
Kwargs: {'b': 2}.
Maximum CPU usage: 0.00%.
Average CPU usage: 0.00%.
Average memory usage: 0.00%.
Maximum RSS memory usage: 112.00KB.
Average RSS memory usage: 112.00KB.
Maximum VMS memory usage: 68.00KB.
Average VMS memory usage: 68.00KB.
IO read count: 5.
IO writes count: 2.
IO read bytes: 239B.
IO write bytes: 2.01KB.
***** End of metrit data. *****
More examples can be found in the examples.py script.
Metrit in Production Environments
The metrit
decorator is designed exclusively for benchmarking and is not suitable for use in production code. You can globally deactivate the metrit
feature by setting the MetrittConfig.ACTIVE
flag to false at the top of your imports. While this will skip the decoration of callables, there may still be a minimal CPU overhead. For production-grade applications, it's recommended to manually remove the decorators and metrit
imports to maintain optimal performance.
from metrit import MetritConfig, metrit
MetritConfig.ACTIVE = False # Deactivates the decorator
Features
- Simplified usage.
- Accurate measurement of function resources.
- Ability to isolate the execution of the function for more accurate measurement.
- Support for functions, methods,
classmethod
andstaticmethods
. - Human-readable data formatting.
- Optional verbose mode for detailed information.
- Ability to globally deactivate the
metrit
decorator. - Optional check children processes' resources as well.
- Automatic recursion detection.
Parameters
Using the decorator @metrit
without any parameters executes the function once and displays the resources. However, you can enhance the experience using the following arguments:
find_children
(bool, optional): Specifies if the monitoring system should look for children processes as well. Defaults to False.isolate
(bool, optional): Determines if the execution of the function is done in a separate process for more accurate results. See the Isolate limitations for more details. Defaults to True.verbose
(bool, optional): Controls whether detailed information is printed after execution. Defaults to False.
Best Practices
The ideal way to use this package is by applying the decorator to the functions you want to measure and running them side by side to compare the results more easily.
-
For more precise measurements, it is recommended to set
isolate
toTrue
. Please see the Isolate section to understand the limitations of this approach. -
Recursive functions should be encapsulated for better benchmarking. Please refer to the Recursive functions section to to learn more.
-
Decorating classes will return the class unmodified and will not be decorated. For more information about this decision, see the Why is class decoration bypassed in the Limitations section.
Recursive Functions
Measuring the resources of recursive functions using decorators can be challenging due to potential verbosity in the output. This package offers an automatic recursion detection feature, but it is strongly recommended to encapsulate the recursive function within another function for cleaner, more precise, and safer results. Using recursive functions with isolate = True
is still in beta and could lead to inaccurate measurements.
Using the Auto-Recursion Feature
The auto-recursion feature detects recursion in the decorated function by checking the parent call function. If recursion is found, it will only output the measures taken to run the appropriate function, plus a small overhead. It is not recommended to rely on this feature intentionally since the collected data might not be as accurate.
This feature is intended for passive use in case the user forgets to encapsulate the recursive function or for non-accurate comparisons.
@metrit
def recursive_func(n):
if n < 2:
return n
return recursive_func(n - 2) + recursive_func(n - 1)
# This will trigger the auto-recursion feature
result = recursive_func(3)
The result for this function could be something like:
Function 'recursive_func' 50.86KB avg of memory 54.46% avg of CPU 4.22KB IO reads 5.63KB IO writes
Encapsulating the Recursive Function
The recommended option is to encapsulate the recursive function within another function and then, decorate and call the parent function. Here's an example:
@metrit
def encapsulated_recursive_function(n):
"""A non-verbose wrapper for the recursive function."""
def recursive_func(n):
if n < 2:
return n
return recursive_func(n - 2) + recursive_func(n - 1)
return recursive_func(n)
# Encapsulating the recursive function
result = encapsulated_recursive_function(3)
This approach enhances speed and measurement precision without incurring any performance penalties, even if isolate = True
. However, it requires modifying your code to measure this type of function.
The result for this function could be something like:
Function 'encapsulated_recursive_function' 40.00KB avg of memory 0.00% avg of CPU 238B IO reads 2.01KB IO writes
Both examples are valid for comparisons between similar circumstances, but the latter is preferred.
Isolate
The isolation feature works by encapsulating the decorated function in a separate process and then monitoring that process from another process to avoid interfering with the function's execution. If any part of this process fails, metrit
will retry running the function in the original process.
Limitations
While this package generally delivers excellent performance and reliability, it's essential to be aware of certain scenarios where using the metrit
decorator could lead to unexpected behavior.
Isolate Limitations
While the isolate
feature is powerful and recommended for precise measurements, it can lead to unexpected results. Here are the main limitations:
- Using it in a non-wrapped recursive function will generate one process for the parent call and use multiprocess queues to pass the call stack. Isolating non-wrapped recursive functions is still in beta and could lead to inaccurate measurements and other possible issues. If any issues arise using this approach, feel free to open a GitHub issue.
- Methods are not affected by the
isolate
parameter and will be executed as if it wereFalse
. This is because encapsulating a method in a separate process from its object can lead to several issues. When methods are called, they rely on the state of the object they belong to. Isolating a method would require serializing (pickling) the entire object state and then deserializing it in a new process. This process can be complex and error-prone, leading to potential errors and inconsistencies. Therefore, to avoid these issues,metrit
does not apply the isolate parameter to methods, ensuring they run in the same process as their object.
Why is Class Decoration Bypassed?
When a class is decorated using metrit
, it remains unmodified and is not decorated. If the user intends to measure the time of __init__
or any other constructor, it can be done directly on those methods.
This design decision was made due to a potential issue that arises when a decorated class is used in conjunction with spawning a new process. Specifically, if a class decorated with metrit
is pickled for use in a separate process and then a method is called within that new process, it may result in a PicklingError
.
MacOs Limitations
This package relies on the psutil
package for retrieving data. Unfortunately, macOS and psutil
do not support IO data per process, so IO data will not be shown on macOS.
CPU Percentage Over 100
As noted in the psutil documentation:
Note: the returned value can be > 100.0 in case of a process running multiple threads on different CPU cores.
Additionally, if find_children
is set to True
, the CPU percentage of all child processes will be added to the main process. This can easily result in the max and average CPU percentages exceeding 100%.
Error Management and Warnings
Errors
If an error occurs while executing the decorated function in non-isolated mode or within a recursively decorated function, the error will be propagated to the user's function.
Warnings
- Deprecation warnings will be added before removing a feature.
How metrit works
Here's a detailed explanation of how metrit
operates:
-
Function Process Execution:
- The decorated function is initially executed in a separate process if
isolate = True
, referred to as the function process. - If this process crashes, the function will be executed in the main process.
- The decorated function is initially executed in a separate process if
-
Monitor Process Setup:
- Before starting the function process, another process, called the monitor process, is created to monitor the resources of the function process.
- The monitor process takes an initial snapshot of the resources in the function process to use as a baseline.
-
Resource Monitoring:
- The monitor process continuously checks the resources of the function process, starting with an interval of 0.1 seconds, which can scale up to 5 seconds for longer-running functions.
- This adaptive refresh rate minimizes the monitoring overhead for time-consuming functions.
-
Completion and Data Collection:
- Upon the function process completion, a signal is sent to the monitor process to stop monitoring.
- The data collected by the monitor process is adjusted by subtracting the initial snapshot to ensure precision.
- The final values are then printed.
-
Handling Failures and Parameters:
- If the function process fails, or if the
isolate
parameter is set toFalse
, the function will execute in the main process while the monitor process continues its monitoring. - The recursion checker for isolated functions uses queues to communicate the function call stack.
- Methods are not isolated and will always run in the main process, as if
isolate
isFalse
.
- If the function process fails, or if the
-
Child Process Monitoring:
- When
find_children
is set toTrue
, the library measures all processes spawned by the function process. - This feature is useful for nested functions or functions that spawn additional processes.
- When
Contributing
Contributions are welcome! Please follow these guidelines when contributing:
- Fork the repository.
- Use
make install
to install all dependencies. - Create a new branch for your changes.
- Implement your changes and commit them.
- Push your changes to your forked repository.
- Submit a pull request.
You can also open an issue if you find a bug or have a suggestion.
You can test your code using make test
and make example
to trigger the examples. Please, check the Makefile to know more about commands.
Testing
The package has been thoroughly tested using unittesting. Test cases can be found in the tests folder.
License
This project is licensed under the MIT License.
Contributors
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
Built Distribution
File details
Details for the file metrit-0.1.3.tar.gz
.
File metadata
- Download URL: metrit-0.1.3.tar.gz
- Upload date:
- Size: 41.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c2e4157ac2109fe9a3e6f4412dc5637b894d6f7d62ff1b4432612ca2ce8b2f7a |
|
MD5 | 14062b9367b90f1dc075b0e1870a40ff |
|
BLAKE2b-256 | c890ad74b30ffc5ac738c5e09eba93c70914bd2f1088e1b2c83e47465c586926 |
File details
Details for the file metrit-0.1.3-py3-none-any.whl
.
File metadata
- Download URL: metrit-0.1.3-py3-none-any.whl
- Upload date:
- Size: 18.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d59e84e96db26d765840b4456588bf4e04f7d1f6280f2c6d7bb21db522b87e0 |
|
MD5 | 7900216a16fd27f6ea82ecdaca24b2c3 |
|
BLAKE2b-256 | a4b3b55ef3d7d4e3ffe72734753ee8346f1142ab25796368d829721e48a7dfa7 |