Skip to main content

A library to easily measure what's going on in your python.

Project description

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Description: =========
Metrology
=========

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

.. code-block:: python

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

.. code-block:: python

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

.. code-block:: python

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

.. code-block:: python

timer = Metrology.timer('responses')
with timer:
do_something()


Utilization Timer
-----------------

A specialized timer that calculates the percentage of wall-clock time that was spent

.. code-block:: python

utimer = Metrology.utilization_timer('responses')
with utimer:
do_something()

Reporters
=========

Logger Reporter
---------------

A logging reporter that write metrics to a logger

.. code-block:: python

reporter = LoggerReporter(level=logging.INFO, interval=10)
reporter.start()


Graphite Reporter
-----------------

A graphite reporter that send metrics to graphite

.. code-block:: python

reporter = GraphiteReporter('graphite.local', 2003)
reporter.start()


Librato Reporter
----------------

A librator metric reporter that send metrics to librato API

.. code-block:: python

reporter = LibratoReporter("<email>", "<token>")
reporter.start()


Ganglia Reporter
----------------

A ganglia reporter that sends metrics to gmond.

.. code-block:: python

reporter = GangliaReporter("Group Name", "localhost", 8649, "udp", interval=60)
reporter.start()


Acknowledgement
===============

This is heavily inspired by the awesome `metrics <https://github.com/codahale/metrics>`_ library.

Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities

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

metrology-1.0.0.tar.gz (20.0 kB view details)

Uploaded Source

Built Distribution

metrology-1.0.0-py2.py3-none-any.whl (22.2 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file metrology-1.0.0.tar.gz.

File metadata

  • Download URL: metrology-1.0.0.tar.gz
  • Upload date:
  • Size: 20.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for metrology-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9c6441552f28d59969998e2ad8129d6b3b7220f3ad59134fea37d86d8f8aaaad
MD5 243a40454bf25eb03c3c3460a67e20f0
BLAKE2b-256 4a5643c1d73e9ac73b88fbb4d25d37bf592b9a00b40bf59629ce7526fb2be07d

See more details on using hashes here.

File details

Details for the file metrology-1.0.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for metrology-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 b54dd5baaca8d013d6b517ae7a91ba3e5c2e7b9ba86a663640dff7b97779fb5d
MD5 c6b6590876c98fc51e68e2649aca2a04
BLAKE2b-256 454e20dd085dc3b12f9dfd23f34d723a766f5841e8520283a0faaf3c5fe6bda5

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