Skip to main content

tracing for insanic

Project description

https://github.com/crazytruth/incendiary/raw/master/artwork/incendiary.jpg

Incendiary

Build Status Documentation Status Codecov

PyPI pyversions PyPI version PyPI license Black

A Tracing extension for Insanic that integrates AWS X-Ray.

Why?

Tracing is needed in any micro service architecture, and this plugin traces requests received and traces any requests with Insanic’s interservice’s communications and sends it’s traced information to AWS X-Ray.

You might be asking why this package is called incendiary. In the military there, rifles and machine guns are usually loaded with tracer rounds every 3-4 rounds which help adjust for aim. And tracer rounds usually have a mild “incendiary” effect to help with visibility.

Tracing is a distributed system also samples(every X request) to help with overall visibility of the system.

Features

  • Tracing with AWS X-ray.

  • Creates a segment when Insanic receives a request.

  • End the segment before return the response.

  • Sampling configuration

  • Starts and ends subsegments for interservice requests with Insanic.

  • Capture other parts of your code.

Installation

Prerequisites for using:

  • python >= 3.6

  • Local running instance of AWS X-Ray Daemon. (Running instructions can be found here)

  • AWS Credentials (if you want to actually send data to AWS-Ray)

To install:

pip install insanic-incendiary

Basic Usage

Basic usage is actually quite simple. You should be able to get it running without any extra configurations.

To Initialize

# app.py

...

from insanic import Insanic
from incendiary import Incendiary

app = Insanic("my_app", version="0.1.0")
Incendiary.init_app(app)

Now if you run, you should be able to start tracing.

To Capture

# in_some_module_you_want_to_capture.py

from incendiary import Incendiary

# if async function

@Incendiary.capture_async(name="Name of subsegment")
async def i_want_to_capture_async():
    pass

# if sync function

@Incendiary.capture(name="Name of subsegment")
def i_want_to_capture():
    pass

These functions will be its own subsegments in X-Ray.

For more information please refer to Incendiary’s Documentation.

Release History

View release history

Contributing

For guidance on setting up a development environment and how to make a contribution to Incendiary, see the CONTRIBUTING.rst guidelines.

Meta

Distributed under the MIT license. See LICENSE for more information.

Thanks to all the people at my prior company that worked with me to make this possible.

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

insanic-incendiary-0.2.0.tar.gz (45.2 kB view hashes)

Uploaded Source

Built Distribution

insanic_incendiary-0.2.0-py3-none-any.whl (15.6 kB view hashes)

Uploaded Python 3

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