Skip to main content

Python Application Tracer

Project description

Slowjam is an easy to use application tracer for python.

Listen to this:

>>> import requests

>>> from slowjam.trace import span
>>> from slowjam.context import slowjam_context

>>> slowjam_context.start('my_application', extras={'http': True})

>>> with span('listen', extras={'deylay': 3}):
>>>     resp = requests.get('https://httpbin.org/delay/3')

>>>     with span('request.origin'):
>>>         origin = resp.json().get('origin')
>>>         origin.split('.')

>>> profile = slowjam_context.stop()
>>> if profile:
>>>     print ''
>>>     print unicode(profile)
>>>     print ''

       time   exec time event
----------- ----------- ------------------------------
       0 ms             + my_application [http=True]
       0 ms             | + listen [deylay=3]
    8039 ms (+    0 ms) | | = request.decode
            (+ 8039 ms) | +
            (+ 8039 ms) +

Slowjam makes it easy to start getting feedback quick, but with some extra effort it seamlessly integrates with other monitoring tools such as statsd, graphite, and logstash.

Feature Support

  • Application Tracing

  • Function timing

  • Usable output

  • Graphite Integration

Could Happen

Installation

To install Slowjam, simply:

$ pip install slowjam
✨🍰✨

History

This was originially open-sourced by App.net in their open source version of Alpha.

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

slowjam-1.3.6.tar.gz (8.6 kB view hashes)

Uploaded Source

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