Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

opencensus-ext-jaeger

Package Overview
Dependencies
Maintainers
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

opencensus-ext-jaeger

OpenCensus Jaeger Trace Exporter

  • 0.7.1
  • PyPI
  • Socket score

Maintainers
3

OpenCensus Jaeger Exporter

|pypi|

.. |pypi| image:: https://badge.fury.io/py/opencensus-ext-jaeger.svg :target: https://pypi.org/project/opencensus-ext-jaeger/

Installation

::

pip install opencensus-ext-jaeger

Usage

The OpenCensus Jaeger Exporter allows you to export OpenCensus_ traces to Jaeger_.

.. _Jaeger: https://www.jaegertracing.io/ .. _OpenCensus: https://github.com/census-instrumentation/opencensus-python/

.. code:: python

from opencensus.ext.jaeger.trace_exporter import JaegerExporter
from opencensus.trace import tracer as tracer_module

tracer = tracer_module.Tracer(exporter=JaegerExporter(
    service_name='my service',
    agent_host_name='localhost',
    agent_port=6831,
))

with tracer.span(name='hello'):
    print('Hello, World!')

References

  • Jaeger <https://www.jaegertracing.io/>_
  • OpenCensus Project <https://opencensus.io/>_

FAQs


Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc