opentelemetry-api

The opentelemetry-api gem defines the core OpenTelemetry interfaces for Ruby applications. Using opentelemetry-api, a library or application can code against the OpenTelemetry interfaces to produce telemetry data such as distributed traces and metrics.

What is OpenTelemetry?

OpenTelemetry is an open source observability framework, providing a general-purpose API, SDK, and related tools required for the instrumentation of cloud-native software, frameworks, and libraries.

OpenTelemetry provides a single set of APIs, libraries, agents, and collector services to capture distributed traces and metrics from your application. You can analyze them using Prometheus, Jaeger, and other observability tools.

How does this gem fit in?

The opentelemetry-api gem defines the core OpenTelemetry interfaces in the form of abstract classes and no-op implementations. That is, it defines interfaces and data types sufficient for a library or application to code against to produce telemetry data, but does not actually collect, analyze, or export the data.

To collect and analyze telemetry data, applications should also install a concrete implementation of the API, such as the opentelemetry-sdk gem. However, libraries that produce telemetry data should depend only on opentelemetry-api, deferring the choise of concrete implementation to the application developer.

How do I get started?

Install the gem using:

gem install opentelemetry-api

Or, if you use bundler, include opentelemetry-api in your Gemfile.

Then, use the OpenTelemetry interfaces to produces traces and other telemetry data. Following is a basic example.

require 'opentelemetry'

# Obtain the current default tracer factory
factory = OpenTelemetry.tracer_factory

# Create a trace
tracer = factory.tracer('my_app', '1.0')

# Record spans
tracer.in_span('my_task') do |task_span|
  tracer.in_span('inner') do |inner_span|
    # Do something here
  end
end

For additional examples, see the examples on github.

How can I get involved?

The opentelemetry-api gem source is on github, along with related gems including opentelemetry-sdk.

The OpenTelemetry Ruby gems are maintained by the OpenTelemetry-Ruby special interest group (SIG). You can get involved by joining us in GitHub Discussions or attending our weekly meeting. See the meeting calendar for dates and times. For more information on this and other language SIGs, see the OpenTelemetry community page.

License

The opentelemetry-api gem is distributed under the Apache 2.0 license. See LICENSE for more information.