Skip to main content

Python code performace metrics calculation tool

Project description

Perfwatch

Perfwatch is a python package that allows you to monitor the performance of your code. It can be used in any python enabled environment with ease of using it as decorator with rotating logging support

Table of Contents

Installation

To install perfwatch, run the following command:

pip install perfwatch

Development

To install perfwatch for development, clone the repository and run the following command:

poetry install

To setup pre-commit hooks, run the following command:

poetry run pre-commit install

To run the tests, run the following command:

poetry run pytest

Usage

Available Profiler Types

The profiler supports the following profiler types:

  • cpu: Profiles CPU usage using the cProfile module.
  • memory: Profiles memory usage using the memory_profiler module.
  • thread: Profiles thread creation and usage.
  • io: Profiles I/O operations.
  • network: Profiles network traffic using the NetworkProfiler class.
  • gpu: Profiles GPU usage using the GPUProfiler class.
  • cache: Profiles cache performance (not implemented).
  • exception: Profiles exception handling (not implemented).
  • system: Profiles system performance (not implemented).
  • distributed: Profiles distributed system performance (not implemented).
  • line: Profiles line-by-line execution using the line_profiler module.
  • time: Profiles execution time.

Basic Usage

from perfwatch import watch

@watch(["line", "cpu", "time"])
def test():
    for _ in range(1000000):
        pass

if __name__ == "__main__":
    test()

Customizing Profiling

You can customize the profiling behavior by passing additional keyword arguments to the watch decorator. For example:

@watch(["network"], packet_src="localhost")
def my_function(x, y):
    # function implementation
    pass

Logging

You can log the profiling results to a file by assigning LOG_FILE_PATH envar to desired file location

License

This project is licensed under the MIT License - see the LICENSE file for details.

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

perfwatch-1.4.3.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

perfwatch-1.4.3-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file perfwatch-1.4.3.tar.gz.

File metadata

  • Download URL: perfwatch-1.4.3.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1023-azure

File hashes

Hashes for perfwatch-1.4.3.tar.gz
Algorithm Hash digest
SHA256 9743040e210ad35ffa569b55c0a86d7748024db9dee076af78d05b0134628657
MD5 5b26d4b394a476d3a9fa73732f508bf1
BLAKE2b-256 06b4d50add6f35fc1e5390e0dc4660ecc6c00f5dbf73b3d90657bf710950d4a1

See more details on using hashes here.

File details

Details for the file perfwatch-1.4.3-py3-none-any.whl.

File metadata

  • Download URL: perfwatch-1.4.3-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.4 Linux/6.5.0-1023-azure

File hashes

Hashes for perfwatch-1.4.3-py3-none-any.whl
Algorithm Hash digest
SHA256 712a19cafce2b9403aeb4fe780492c852129ffca090035abe83b7a427c950412
MD5 cb05a3a3573b8ff409ce1d76de9b06e0
BLAKE2b-256 a3322bf73ff1dc3aa7b1fdd86b9facaa4f2f6290db40019f48d7f1bb8d5208f8

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page