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.
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.
To allow the shim to work for metrics, add the shim as a dependency.
Applications also need to attach OpenCensus metrics to their metric readers on registration.
PeriodicMetricReader reader = ...
SdkMeterProvider.builder()
.registerMetricReader(OpenCensusMetrics.attachTo(reader))
.buildAndRegisterGlobal();
For example, if a logging exporter were configured, the following would be added:
LoggingMetricExporter metricExporter = LoggingMetricExporter.create();
SdkMeterProvider.builder()
.registerMetricReader(OpenCensusMetrics.attachTo(PeriodicMetricReader.create(metricExporter)))
.build();
- OpenCensus links added after an OpenCensus span is created will not be exported, as OpenTelemetry only supports links added when a span is created.