Skip to content

Commit

Permalink
Add README
Browse files Browse the repository at this point in the history
  • Loading branch information
chusitoo committed Jan 8, 2023
1 parent 2d2adf3 commit 5d15422
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions opentracing-shim/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# OpenTracing Shim

[![Apache License][license-image]][license-image]

The OpenTracing shim is a bridge layer from OpenTelemetry to the OpenTracing API.
It takes OpenTelemetry Tracer and exposes it as an implementation of an OpenTracing Tracer.

## Usage

Use the TracerShim wherever you initialize your OpenTracing tracers.
There are 2 ways to expose an OpenTracing Tracer:
1. From the global OpenTelemetry configuration:
```cpp
auto tracer_shim = TracerShim::createTracerShim();
```
1. From a provided OpenTelemetry Tracer instance:
```cpp
auto tracer_shim = TracerShim::createTracerShim(tracer);
```

Optionally, you can specify propagators to be used for the OpenTracing `TextMap` and `HttpHeaders` formats:

```cpp
OpenTracingPropagators propagators{
.text_map = nostd::shared_ptr<TextMapPropagator>(new trace::propagation::JaegerPropagator()),
.http_headers = nostd::shared_ptr<TextMapPropagator>(new trace::propagation::HttpTraceContext())
};

auto tracer_shim = TracerShim::createTracerShim(tracer, propagators);
```

If propagators are not specified, OpenTelemetry's global propagator will be used.

## License

Apache 2.0 - See [LICENSE][license-url] for more information.

## Useful links

- For more information on OpenTelemetry, visit: <https://opentelemetry.io/>
- For help or feedback on this project, join us in [GitHub Discussions][discussions-url]

[discussions-url]: https://github.com/open-telemetry/opentelemetry-cpp/discussions
[license-url]: https://github.com/open-telemetry/opentelemetry-cpp/blob/main/LICENSE
[license-image]: https://img.shields.io/badge/license-Apache_2.0-green.svg?style=flat

0 comments on commit 5d15422

Please sign in to comment.