Skip to main content

README

A python library to send application metrics using UDP.

Build Status

Installation

pip install measures

Usage

  • count

from measures import Measure
measure = Measure('myclient', ('localhost', 1984))
measure.count('mymetric', dimensions={'name': 'john'})
  • time (measure time spent on a given block)

import time
from measures import Measure
measure = Measure('myclient', ('localhost', 1984))
with measure.time('mymetric'):
    # do some slow operation:
    time.sleep(3.14159)
import time
from measures import Measure
measure = Measure('myclient', ('localhost', 1984))
with measure.time('mymetric') as dimensions:
    # do some slow operation:
    time.sleep(1.61803)
    # add any relevant information, if necessary:
    dimensions['relevant_info'] = 'pertinent_info'
  • send

from measures import Measure
measure = Measure('myclient', ('localhost', 1984))
dimensions = {
    'time': 10.1,
    'relevant_info': pertinent_info
}
measure.send('mymetric', dimensions)
  • multiple destinations

Metrics can be sent to more than one backend

from measures import Measure

measure = Measure('myclient', [('backend.host.1', 1984), ('backend.host.2', 1984)]

Contributing

  • Set up your environment

git clone https://github.com/globocom/measures.git
cd measures
mkvirtualenv measures
pip install -r test_requirements.txt
  • Run the tests

make tests
  • Write tests for your new feature or bug fix

  • Write needed code changes

  • Iterate, have fun :)

  • Make a pull request with your changes

Who do I talk to?

Release files for measures 1.4.0

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for measures 1.4.0
File Size Uploaded
measures-1.4.0.tar.gz 2.4 kB Details

Release files / measures-1.4.0.tar.gz

Download URL measures-1.4.0.tar.gz
Size 2.4 kB
Tags Source
SHA-256 checksum
How to use checksums
47d08c594f53152ace309181648a910436df81d95c2a107e878c28b7bee20786
BLAKE2b-256 checksum
How to use checksums
347a72dac212602b2d68d87bfe3d381ef6cdeb7c99cac5b5e3ccea034d8eebd6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via Python-urllib/3.7

Release history Release notifications | RSS feed

This release

1.4.0 This release

1 release file

1.3.0

1 release file

1.2.0

1 release file

1.1.0

1 release file

1.0.9

1 release file

1.0.8

1 release file

1.0.7

1 release file

1.0.2

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page