Collection of metrics collection tools, including a simple stopwatch
Project description
statman
Overview
Statman is a collection of metric collectors to embed within your python application. It includes a registry to easily access your metrics.
Statman
=> registry
Metric
=> set of classes that can perform metric collection
Stopwatch
=> a metric class responsible for tracking time delta
Install it!
Statman is availble from pypi.
It can be manually installed by:
pip install statman
or by adding the following to your requirements.txt
:
statman=*
Use it
Statman (Registry)
Statman
offers a registery to make it easily to globally access metrics. Perhaps you will create and register a stopwatch in the depths of your codebase to measure the time to write to a database, and then want to access that result in some other part of your application.
Register
register(name, metric)
=> manually register a new metric
Get
get(name)
=> get a metric by name
Count
count()
=> returns a count of the registered metrics.
Reset
reset()
=> clears all metrics from the registry.
Specialized register / get
stopwatch(name)
=> returns a stopwatch instance. If there is a registered stopwatch with this name, return it. If there is no registered stopwatch with this name, create a new instance, register it, and return it.
Stopwatch
Statman-Stopwatch
is for timing operations within your system. Suppose that you are trying to track down where the system is slow. Put a stopwatch around certain critical areas, time those operations, and compare.
Constructor
Stopwatch(name=None, autostart=False, initial_delta=None)
=> create an instance of a stopwatch.- If
autostart
set to true, the stopwatch will automatically start - If
initial_delta
is set to a value, andread
of the stopwatch is incremented by this amount. This can be helpful if you adding timings together. name
is used for to string / reporting for identification of this metric. Defaults to blank- If
enable_history
is set to true, when a timing is collected (stop
invoked), an event is collected. This can be accessed by thehistory
property to examing statistics on this stopwatch
- If
Start
start()
=> starts the stopwatch, let the timing begin!
Read
read(units, precision)
=> reads the stopwatch to determine how much time has elapsed. Returns the time elapsed in seconds.- The elapsed time will be returned based upon the
units
('m' minutes, 's' seconds, 'ms', milliseconds). Defaults to seconds. - If precision is provided,
read()
will round to the number of decimals places based on precision. - Note:
read
does NOT stop the stopwatch - if the stopwatch is runnning, it will continues to run.
- The elapsed time will be returned based upon the
time(units, precision)
=> alias forread()
Stop
stop(units, precision)
=> stops the stopwatch, and returns the time elapsed in seconds- See read for the role of
units
andprecision
- See read for the role of
Reset
reset()
=> restores the stopwatch back to init state and clears start and stop times
Restart
restart()
=>reset
s the stopwatch, thenstart
s it
History
history
=> ifenable_history
set during stopwatch construction, thehistory
property returns an instance of a history object, which can be used for examing statistics
Examples
Maually Register Metric
from statman import Statman
Statman.register('expensive-operation-timing',Stopwatch())
stopwatch = Statman.get('expensive-operation-timing')
Stopwatch via Registry
from statman import Statman
Statman.stopwatch('stopwatch-name').start()
# do some expensive operation that you want to measure
Statman.stopwatch('stopwatch-name').read()
print(f'event took {Statman.stopwatch('stopwatch-name').read(precision=1)}s to execute') # event took 1.0s to execute
Stopwatch: Direct Usage (no registry)
from statman import Stopwatch
sw = Stopwatch()
sw.start()
# do some expensive operation that you want to measure
delta = sw.stop()
print(f'event took {sw.read(precision=1)}s to execute') # event took 1.0s to execute
Stopwatch: History
from statman import Stopwatch
number_of_events = 1000000
sw = Stopwatch(enable_history=True)
for i in range(0, number_of_events):
sw.start()
# do some expensive operation that you want to measure
sw.stop()
print('number of measurements:', sw.history.count())
print('min:', sw.history.min_value())
print('max:', sw.history.max_value())
print('ave:', sw.history.average_value())
print('mode:', sw.history.mode_value())
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 statman-1.1.0.tar.gz
.
File metadata
- Download URL: statman-1.1.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 99d58353e92363bc528dad24b9cdf0bf23d2cd8d65c3cf4d205a9ca7bb08eeac |
|
MD5 | df3e0d4e16c63c258e07092f48e8478a |
|
BLAKE2b-256 | a98c7440cd2d72416517ad64e161ff104c5750c8e5fecd807041b04a988ce3c2 |
File details
Details for the file statman-1.1.0-py3-none-any.whl
.
File metadata
- Download URL: statman-1.1.0-py3-none-any.whl
- Upload date:
- Size: 7.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ec786fdae6ec1c61f298757a5532a97cb9c272fc5ac4778b6de765e98fcf911 |
|
MD5 | 08641684501d4d44366921dd6c99a3d8 |
|
BLAKE2b-256 | 393b513a8241a35d7dfb2ccade81a005691cdf07680d34155f2150743fbb5980 |