Skip to main content

A Python metrics library with rate, statistical distribution, and timing information.

Project description

https://badge.fury.io/py/yunomi.png https://secure.travis-ci.org/dreid/yunomi.png?branch=master

As in:

It has performance implications, Y U NO MEASURE IT!?

Yunomi provides insights to the internal behavior of an application, providing useful statistics and metrics on selected portions of your code. It’s a Python port of the core portion of a Java Metrics library by Coda Hale.

Stop guessing, start measuring:

$ pip install yunomi

Core Features

Counter

Simple interface to increment and decrement a value. For example, this can be used to measure the total number of jobs sent to the queue, as well as the pending (not yet complete) number of jobs in the queue. Simply increment the counter when an operation starts and decrement it when it completes.

Meter

Measures the rate of events over time. Useful to track how often a certain portion of your application gets requests so you can set resources accordingly. Tracks the mean rate (the overall rate since the meter was reset) and the rate statistically significant regarding only events that have happened in the last 1, 5, and 15 minutes (Exponentially weighted moving average).

Histogram

Measures the statistical distribution of values in a data stream. Keeps track of minimum, maximum, mean, standard deviation, etc. It also measures median, 75th, 90th, 95th, 98th, 99th, and 99.9th percentiles. An example use case would be for looking at the number of daily logins for 99 percent of your days, ignoring outliers.

Timer

A useful combination of the Meter and the Histogram letting you measure the rate that a portion of code is called and a distribution of the duration of an operation. You can see, for example, how often your code hits the database and how long those operations tend to take.

Examples

Decorators

The simplest and easiest way to use the yunomi library.

Counter

You can use the count_calls decorator to count the number of times a function is called.

>>> from yunomi import counter, count_calls
>>> @count_calls
... def test():
...     pass
...
>>> for i in xrange(10):
...     test()
...
>>> print counter("test_calls").get_count()
10

Timer

You can use the time_calls decorator to time the execution of a function and get distributtion data from it.

>>> import time
>>> from yunomi import timer, time_calls
>>> @time_calls
... def test():
...     time.sleep(0.1)
...
>>> for i in xrange(10):
...     test()
...
>>> print timer("test_calls").get_mean()
0.100820207596

Requirements

Yunomi has no external dependencies and runs on PyPy and Python 2.6, 2.7, and 3.3.

History

0.3.0 (2013-07-27)

  • Python 3.3 is now supported additionally to 2.6 and 2.7.

  • Decorators don’t eat return values anymore.

  • Meters can be reset now.

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

yunomi-0.3.0.tar.gz (14.2 kB view details)

Uploaded Source

Built Distribution

yunomi-0.3.0-py2.py3-none-any.whl (23.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file yunomi-0.3.0.tar.gz.

File metadata

  • Download URL: yunomi-0.3.0.tar.gz
  • Upload date:
  • Size: 14.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for yunomi-0.3.0.tar.gz
Algorithm Hash digest
SHA256 91fceddbb4716cba81219a1f70dd3814e128a4352698520e1ed355ab9cb7db87
MD5 7b5ca30ef9c68aa33488e2fdb26cf31c
BLAKE2b-256 6b589aacb24163fa5fcc380217fe4057ec17c624eee3f34a6618737225981e30

See more details on using hashes here.

File details

Details for the file yunomi-0.3.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for yunomi-0.3.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0a57d8277109458d85371d41afdbf749edee824fffc559542e6680fa59ad6ca8
MD5 177197af818d381ffa6ef9a31997007a
BLAKE2b-256 b8f038c36e0a71f545334a8eb1d6016896be4a44c06dd98f1854db22545ce63c

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