OpenTelemetry SDK for R packages and projects
High-quality, ubiquitous, and portable telemetry to enable effective observability. OpenTelemetry is a collection of tools, APIs, and SDKs used to instrument, generate, collect, and export telemetry data (metrics, logs, and traces) for analysis in order to understand your software’s performance and behavior.
Use the otel package as a dependency if you want to instrument your R package or project for OpenTelemetry.
Use this package (otelsdk) to produce OpenTelemetry output from an R package or project that was instrumented with the otel package.
Warning
This package is experimental and may introduce breaking changes any time. It probably works best with the latest commit of the otel package.
You can install the development version of otel from GitHub with:
# install.packages("pak")
pak::pak("r-lib/otelsdk")
- Instrument your R package or project using the otel package.
- Choose an exporter from the otelsdk package. The
http
exporter sends OpenTelemetry output through OTLP/HTTP. - Set the
OTEL_TRACES_EXPORTER
environment variable to point to the exporter of your choice. E.g. for OTLP/HTTP setOTEL_TRACES_EXPORTER=http
. - Start R and your app. Telemetry data will be exported to the chosen exporter.
Tip
If you have Docker, you can start a Jaeger container on the default port:
docker run --rm --name jaeger \
-p 16686:16686 \
-p 4317:4317 \
-p 4318:4318 \
-p 5778:5778 \
-p 9411:9411 \
jaegertracing/jaeger:2.4.0
MIT © Posit, PBC