Skip to main content

Metric collection agent for Carbon

Project description

PyPI
GitHub license

Metrics collection agent for Carbon. It allow you to collect some metrics about your code and measure execution time.

Installation

Install via pip:

pip install carbonstat

Basic usage

You can just import carbonstat.stat instance and play with it:

from carbonstat import stat

def foo():
    print 'Hello, world!'

foo()
foo()

stat['foo.count'].add(2)  # save `foo.count` metric as execution counter

stat.send()  # send packet to Carbon with `foo.count` metric value

All packets are sent via udp to 127.0.0.1:2003 by default. You can change default destination address via environment variables $CARBOH_HOST and $CARBON_PORT.

You can combine multiple metrics in one CarbonStat instance too:

def foo():
    print 'Hello from foo!'

def bar():
    print 'Hello from bar!'

foo()
foo()
bar()

stat['foo.count'].add(2)
stat['bar.count'].add(1)

stat.send()  # send packet to Carbon with two metrics

Advanced usage

You can measure execution time of code blocks with convenient context manager:

stat = CarbonStat(host=192.168.0.1, port=2003)

def foo(sec):
    sleep(sec)
    print 'Hello after %d seconds!' % sec

with stat.timer('foo.time') as timer:
    timer.start()  # measure first
    foo(3)
    timer.stop()

    timer.start()  # measure again
    foo(5)
    timer.stop()

stat.send()  # send packet:
#               heartbeat    0 timespamp
#               foo.time.min 3 timestamp
#               foo.time.avg 4 timestamp
#               foo.time.max 5 timestamp

Or you can do it simpler:

def foo(sec):
    sleep(sec)
    print 'Hello after %d seconds!' % sec

with stat.timer('foo.time'):
    foo(3)
with stat.timer('foo.time'):
    foo(5)

stat.send()  # send packet like above

You can even decorate your function and measure it’s execution time while calling it:

@stat.timeit('foo.time')
def foo(sec):
    sleep(sec)
    print 'Hello after %d seconds!' % sec

foo(3)
foo(5)

stat.send()  # send packet like above

Extra

In some cases you may need to save the value of any metric after sending the packet to Carbon. You can do it by setting accumulate attribute to True:

```python
stat = CarbonStat(host=192.168.0.1, port=2003)
stat['persistent'].accumulate = True

stat['persistent'].add(1)
stat.send()  # send packet with `persistent` = 1
stat.send()  # send packet with `persistent` = 1
stat['persistent

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

carbonstat-0.4.3.tar.gz (2.7 kB view details)

Uploaded Source

File details

Details for the file carbonstat-0.4.3.tar.gz.

File metadata

  • Download URL: carbonstat-0.4.3.tar.gz
  • Upload date:
  • Size: 2.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for carbonstat-0.4.3.tar.gz
Algorithm Hash digest
SHA256 ef4cf9333af3c4c135f8b4cef2b9c99487b47d6e568f55b2c3eeb922780e611d
MD5 758bd2fef08dadd97bc4b5abe629e9ab
BLAKE2b-256 ea5a11a871487609dbdb3f0422aa2b132906946c1e21581b451e8129560671cc

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