Skip to main content

High performace C++ implementation of LightStep tracing

Project description

LightStep Streaming: Our Streaming Python Tracer

The Streaming Python Tracer, is an OpenTracing tracer which sends data to LightStep Satellites.

This tracer sends data to multiple Satellites concurrently using non-blocking I/O writes. Memory is carefully managed so that spans are only copied a single time during the reporting process and streamed to Satellites as they are generated to avoid filling up memory. The Streaming Python Tracer is written in C++. There is a thin Python wrapper around this C++ core so the library can be imported just like any other Python module.

Setup

If you aren't familiar with OpenTracing or LightStep, we recommend reading up before continuing.

Before installing, make sure that you system meets these requirements:

  • Linux
  • Python 2.7 or >= 3.2.0 (and pip)
  • opentracing PyPI Module (>=2.2.0)

To install the Streaming Python Tracer, run pip install lightstep-streaming.

Getting Started

The beauty of OpenTracing is that all tracers follow a well-defined API. The only step which varies from tracer to tracer is the setup step when lightstep_streaming.Tracer's constructor is called. Below is a sample program which illustrates how to create a new Tracer object using the Streaming Python Tracer. For more details on how to use a Tracer object once it has been created, checkout the OpenTracing Python API Guide.

import lightstep_streaming

tracer = lightstep_streaming.Tracer(
    component_name='[your service name]',
    access_token='[your LightStep access token]',

    # Use these defaults unless you know what you're doing
    use_stream_recorder=True,
    collector_plaintext=True,

    # You can put any number of Satellite endpoints in this list and the tracer
    # will rotate through them and send spans to each one.
    satellite_endpoints=[{'host': 'localhost', 'port': 8360}],

    # Turns off verbose logging, which is really only useful for debugging.
    verbose=False
)

# Generates one span
with tracer.start_active_span('[your operation name]'):
    pass

# Makes sure that the tracer has sent the span to a Satellite
tracer.flush()

A complete list of Streaming Python Tracer configuration parameters can be found in tracer_configuration.schema.json. If you are interested in peeking at the source code, this is available in the LightStep C++ Tracer repo.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

File details

Details for the file lightstep_streaming-0.11.0-cp32-abi3-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for lightstep_streaming-0.11.0-cp32-abi3-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1f5dace660498dd78db841d5111d778a3f856b2b6588bb432ed512fa297c638f
MD5 69da781da01bce7269e3f220b6fe47d8
BLAKE2b-256 5337d9bcab1f451cf253f5fecc94dbfbe19eaff8b5c5d934f7917099367a4245

See more details on using hashes here.

File details

Details for the file lightstep_streaming-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for lightstep_streaming-0.11.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 a19286ccd1cbd041c0b58f5573cb59362ad079c54e232ba20997f95920021e92
MD5 b668febd1214b0ac348802c1f076385f
BLAKE2b-256 50a3b387d0858e93278995703e306450edcc713a0ca5cedb617bad84238e5947

See more details on using hashes here.

File details

Details for the file lightstep_streaming-0.11.0-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

File hashes

Hashes for lightstep_streaming-0.11.0-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e747f222cc4d38da48b04f1511aa24cb32b83ee042c9a96ac59f6516903ba91c
MD5 6e2aaaf8e2edd44434e056d08ae6fb61
BLAKE2b-256 ed35dbe0abd2052e0f8485663874f2c68330e7dfa95864826c8623a38872ecbf

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