OpenCensus Zipkin Trace Exporter
|pypi|
.. |pypi| image:: https://badge.fury.io/py/opencensus-ext-zipkin.svg :target: https://pypi.org/project/opencensus-ext-zipkin/
::
pip install opencensus-ext-zipkin
The OpenCensus Zipkin Exporter allows you to export OpenCensus_ traces to Zipkin_.
.. _OpenCensus: https://github.com/census-instrumentation/opencensus-python/ .. _Zipkin: https://zipkin.io/
.. code:: python
from opencensus.ext.zipkin.trace_exporter import ZipkinExporter
from opencensus.trace import tracer as tracer_module
tracer = tracer_module.Tracer(exporter=ZipkinExporter(
    service_name='my service',
    host_name='localhost',
    port=9411,
))
with tracer.span(name='hello'):
    print('Hello, World!')
OpenCensus Project <https://opencensus.io/>_Zipkin <https://zipkin.io/>_