Lightstep from ServiceNow Logo

Products

Solutions

Documentation

Resources

Lightstep from ServiceNow Logo
< all blogs

OpenTelemetry automatic instrumentation: a deep dive

OpenTelemetry can be an overwhelming project to take in - understanding the interactions between the API, SDK, and various tools and protocols is a lot. One particularly interesting and important part of the project, though, is the "automatic instrumentation" components. What is automatic instrumentation, and why is it important to OpenTelemetry? How can you use it? How does it help? We’ll answer these questions, and more, so read on!

What is Automatic Instrumentation?

You might be more familiar with the term "agent" to refer to automatic instrumentation. A quick detour is in order - why did agents exist in the first place? Early application monitoring tools tended to rely on what’s known as a “black box” approach to monitoring. Often, the people responsible for monitoring the health of services weren’t the people developing those services, so they were forced to rely on external applications and processes that could perform introspection of running services and generate performance data about them. These processes, called agents, were installed on servers and hosts, given a list of process names to monitor, and would then use various methods to gather metrics and request traces from them.

As we’ve “shifted left”, and developers have taken more ownership in the care and feeding of their services, the tools we need to understand service performance has changed as well. Developers need a choice of tools that suit their service’s needs, rather than one-size-fits-all monitoring agents. Additionally, developers don’t want to be locked into a proprietary solution that they can’t extend or modify to suit their needs. OpenTelemetryOpenTelemetry’s automatic instrumentation fulfills both of these requirements, allowing for a bridge to a "batteries-included" future of observability.

Automatic instrumentation works by modifying your code at runtime or at compile-time to add tracing and metrics instrumentation to the libraries and frameworks you depend on. The way you install and use automatic instrumentation can differ from language to language, depending on the capabilities of the language runtime. Java, for example, allows you to add automatic instrumentation by passing a JAR to the JVM. Languages such as Go require you to import and wrap existing libraries. In JavaScript, you need to load the automatic instrumentation modules before you import your frameworks. Regardless of the mechanism, all of them share a few important traits.

Shared Standards

The biggest benefit of OpenTelemetry automatic instrumentation is that it provides a single, shared set of semantics across languages for common operations. This means that in a polyglot system, traces and metrics will have the same attribute for the same type of operation, regardless of the framework or library, or language that emitted the telemetry. Let’s be more specific - if you have a web server running using Java Spring Boot, Node.JS Express, and Go net/HTTP, and make a GET request to a route on them, the trace for that request will have the same attributes regardless of which server handled it - just different values for things that are different. This makes it easy to ask questions about your system, like “is the new version of this library out-performing the old version” or “which region has the slowest response time to my API right now?”

In addition, OpenTelemetry is standardizing the configuration of automatic instrumentation, irrespective of language -- need to configure loglevel, or sampling? Doesn’t matter what language you’re in, OTEL_LOG_LEVEL and OTEL_TRACE_SAMPLER will work everywhere. This simplifies documentation and comprehension quite a bit!

Support for the critical path

When you’re embarking on observability, one of the most important tasks is reducing the "time to value" -- how long does it take before you can start to answer questions? OpenTelemetry automatic instrumentation tackles this by focusing on instrumenting the most vital parts of your system’s "critical path" -- HTTP and RPC servers, database clients, caches, and so forth. Ideally, you can drop in automatic instrumentation and within minutes, begin diagnosing common latency and availability issues with your system. Tracing is most useful when all of your libraries are instrumented, and auto-instrumentation simplifies this dramatically.

Automatic instrumentation also provides a building block for future instrumentation efforts. Once you know the basic outline of things, you can start to go deeper, adding in custom instrumentation and attributes around your business logic.

No vendor lock-in

OpenTelemetry is, and always will be, a permissively-licensed open source project. This means that you’re never going to be boxed in by proprietary extensions, unavailable source code, or SaaS/Cloud-specific addons. This ensures that both today, and into the future, you’ll be able to rely on OpenTelemetry to grow with you as your observability practice expands and matures. We also play nice with existing tools, so you can put OpenTelemetry as the centerpiece of your observability strategy and integrate existing instrumentation from legacy OpenTracing or OpenCensus projects with new OpenTelemetry instrumentation.

What’s supported with OpenTelemetry?

You can find a full list of supported libraries and frameworks in the OpenTelemetry project readmes, but I’d like to highlight the breadth of the support here.

JavaJava

  • Akka HTTP, Play Framework

  • Apache HttpClient, AsyncHttpClient

  • AWS Lambda, AWS SDK

  • Cassandra

  • Couchbase

  • Elasticsearch

  • Google HTTP Client, gRPC

  • Hibernate

  • JAX-RS

  • JDBC

  • Kafka

  • Kubernetes Client

  • Log4j

  • MongoDB

  • Redisson, Rediscala

  • Servlet Framework

  • Spring Batch, Spring Data, Spring Scheduling, Spring Web MVC, Spring Webflux

  • Twilio

  • Glassfish, JBoss, Jetty, Tomcat, Weblogic, WildFly … and more!

C#C#

  • ASP.NET and ASP.NET Core

  • gRPC

  • HttpClient

  • Redis, SQL

  • Elasticsearch

  • Entity Framework

  • Azure SDK

  • MassTransit … and many more coming soon!

RubyRuby

  • Rails

  • Redis

  • Faraday

  • GraphQL

  • MongoDB

  • Mysql2

  • Rack

  • Sinatra

  • Ruby Kafka

  • net_http … and more!

Node.JSNode.JS

  • Express

  • GraphQL

  • ioredis

  • MongoDB

  • MySQL

  • PG

  • Redis

  • gRPC

  • http/https … and more!

PythonPython

  • Boto

  • Celery

  • AIOPG, AIOHTTP

  • Elasticsearch

  • Django

  • Flask

  • gRPC

  • MySQL

  • PyMongo

  • PyMemcache

  • Sqlite3

  • Tornado

  • Wsgi

  • SQLAlchemy … and more!

GoGo

  • Beego

  • Gomemcache

  • Gin

  • Mux

  • Sarama

  • Mongo-driver

  • Grpc

  • net/http

  • Macaron

  • Redis … and more!

This is only a selection of available packages and instrumentation libraries covered, be sure to check your language’s contrib repository for more!

The future of OpenTelemetry auto instrumentation

The goal of OpenTelemetry is to make observability a built-in component of your software, which means that we’d love to see these integrations actually move upstream and become something that you get simply by using these packages! This is a long-term goal -- I wouldn’t expect it soon -- but in the meantime, using automatic instrumentation is a great way to get closer to that goal today. If you’ve got any questions about how to get started, check out our community discord at https://ltstp.run/discordhttps://ltstp.run/discord, I’d love to hear from you!

Interested in joining our team? See our open positions herehere.

February 25, 2021
6 min read
OpenTelemetry

Share this article

About the author

Austin Parker

Austin Parker

Read moreRead more

From Day 0 to Day 2: Reducing the anxiety of scaling up cloud-native deployments

Jason English | Mar 7, 2023

The global cloud-native development community is facing a reckoning. There are too many tools, too much telemetry data, and not enough skilled people to make sense of it all.  See how you can.

Learn moreLearn more

OpenTelemetry Collector in Kubernetes: Get started with autoscaling

Moh Osman | Jan 6, 2023

Learn how to leverage a Horizontal Pod Autoscaler alongside the OpenTelemetry Collector in Kubernetes. This will enable a cluster to handle varying telemetry workloads as the collector pool aligns to demand.

Learn moreLearn more

Observability-Landscape-as-Code in Practice

Adriana Villela, Ana Margarita Medina | Oct 25, 2022

Learn how to put Observability-Landscape-as-Code in this hands-on tutorial. In it, you'll use Terraform to create a Kubernetes cluster, configure and deploy the OTel Demo App to send Traces and Metrics to Lightstep, and create dashboards in Lightstep.

Learn moreLearn more
THE CLOUD-NATIVE RELIABILITY PLATFORM

Lightstep sounds like a lovely idea

Monitoring and observability for the world’s most reliable systems