A library to easily measure what's going on in your python.
Project description
A library to easily measure what’s going on in your python.
Metrology allows you to add instruments to your python code and hook them to external reporting tools like Graphite so as to better understand what’s going on in your running python program.
Installing
To install :
pip install metrology
API
Gauge
A gauge is an instantaneous measurement of a value
class JobGauge(metrology.instruments.Gauge):
def value(self):
return len(queue)
gauge = Metrology.gauge('pending-jobs', JobGauge())
Counters
A counter is like a gauge, but you can increment or decrement its value
counter = Metrology.counter('pending-jobs')
counter.increment()
counter.decrement()
counter.count
Meters
A meter measures the rate of events over time (e.g., “requests per second”). In addition to the mean rate, you can also track 1, 5 and 15 minutes moving averages
meter = Metrology.meter('requests')
meter.mark()
meter.count
Timers
A timer measures both the rate that a particular piece of code is called and the distribution of its duration
timer = Metrology.timer('responses')
with timer:
do_something()
Utilization Timer
A specialized timer that calculates the percentage of wall-clock time that was spent
utimer = Metrology.utilization_timer('responses')
with utimer:
do_something()
Reporters
Logger Reporter
A logging reporter that write metrics to a logger
reporter = LoggerReporter(level=logging.INFO, interval=10)
reporter.start()
Graphite Reporter
A graphite reporter that send metrics to graphite
reporter = GraphiteReporter('graphite.local', 2003)
reporter.start()
Librato Reporter
A librator metric reporter that send metrics to librato API
reporter = LibratoReporter("<email>", "<token>")
reporter.start()
Ganglia Reporter
A ganglia reporter that sends metrics to gmond.
reporter = GangliaReporter("Group Name", "localhost", 8649, "udp", interval=60)
reporter.start()
Acknowledgement
This is heavily inspired by the awesome metrics library.
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 metrology-0.10.1.tar.gz
.
File metadata
- Download URL: metrology-0.10.1.tar.gz
- Upload date:
- Size: 18.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b14d608300298036b7679b4cc1025eb02266d18cfda7522a74f16a98219429d |
|
MD5 | 3dd9f21965a73d48dd380deadd871d8c |
|
BLAKE2b-256 | 5b3210bbc3598c09a8e939a711bce5c243515fdb01ead612bc965da8f5992f75 |
File details
Details for the file metrology-0.10.1-py2.py3-none-any.whl
.
File metadata
- Download URL: metrology-0.10.1-py2.py3-none-any.whl
- Upload date:
- Size: 21.8 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c6425b5392bdc1f3d61dcb893c7801e6e7d0ec3a7c7536900a054f8260473c32 |
|
MD5 | bb78fe4f00960f682b54377317b36a76 |
|
BLAKE2b-256 | 4464459a53c0b9d16856075df313041f83a3447f09c57ed287895f1b002dc1a0 |