opentelemetry-java/opencensus-shim
Bogdan Drutu 450db6c2b2
Change MetricData to expose the Point type that is expected for each data type (#2413)
Signed-off-by: Bogdan Drutu <bogdandrutu@gmail.com>
2021-01-03 08:32:52 -08:00
..
src Change MetricData to expose the Point type that is expected for each data type (#2413) 2021-01-03 08:32:52 -08:00
README.md OpenCensus to OpenTelemetry metric exporter (#2085) 2020-12-07 08:30:22 -08:00
build.gradle Alternative OpenCensus shim implementation (#2060) 2020-12-21 14:36:06 +09:00

README.md

OpenTelemetry OpenCensus Shim

The OpenCensus shim allows applications and libraries that are instrumented with OpenTelemetry, but depend on other libraries instrumented with OpenCensus, to export trace spans from both OpenTelemetry and OpenCensus with the correct parent-child relationship. It also allows OpenCensus metrics to be exported by any configured OpenTelemetry metric exporter.

Usage

Traces

To allow the shim to work for traces, add the shim as a dependency.

Nothing else needs to be added to libraries for this to work.

Applications only need to set up OpenTelemetry exporters, not OpenCensus.

Metrics

To allow the shim to work for metrics, add the shim as a dependency.

Applications also need to pass the configured metric exporter to the shim:

OpenTelemetryMetricsExporter exporter =
         OpenTelemetryMetricsExporter.createAndRegister(metricExporter);

For example, if a logging exporter were configured, the following would be added:

LoggingMetricExporter metricExporter = new LoggingMetricExporter();
OpenTelemetryMetricsExporter exporter =
         OpenTelemetryMetricsExporter.createAndRegister(metricExporter);

The export interval can also be set:

OpenTelemetryMetricsExporter exporter =
         OpenTelemetryMetricsExporter.createAndRegister(metricExporter,
                Duration.create(0, 500));

Known Problems

  • OpenCensus links added after an OpenCensus span is created will not be exported, as OpenTelemetry only supports links added when a span is created.