# Opentelemetry 1 55 0

> Complete OpenTelemetry 1.55.0 specification toolkit for implementing distributed tracing, metrics collection, and logging across polyglot applications. Use when instrumenting services with OTel SDKs, configuring OTLP exporters, implementing sampling strategies, setting up context propagation, or building observability pipelines following the official OTel 1.55.0 spec.

- Skill: `tangledgroup/opentelemetry-1-55-0` (Agent Skill, multi-file: 8 files)
- Install (CLI): `npx skillmds@latest add tangledgroup/opentelemetry-1-55-0`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tangledgroup/opentelemetry-1-55-0/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- License: MIT
- Author: tangledgroup (https://skillmd.com/u/tangledgroup)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/tangledgroup/opentelemetry-1-55-0

---


# OpenTelemetry 1.55.0

## Overview

OpenTelemetry (OTel) is a vendor-neutral, open-source observability framework for instrumenting, generating, collecting, and exporting telemetry data — traces, metrics, logs, and profiles. It is a CNCF project supported by 90+ observability vendors and provides a unified standard across the industry.

At the highest architectural level, OpenTelemetry clients are organized into **signals**. Each signal provides a specialized form of observability and functions independently while sharing common subsystems like context propagation. OpenTelemetry is a **cross-cutting concern** — instrumentation code is mixed into application code to describe behavior without modifying business logic.

Each signal consists of four types of packages:

- **API** — Cross-cutting public interfaces for instrumentation. Imported by third-party libraries and application code.
- **SDK** — The implementation of the API, managed by the application owner. Includes constructors and plugin interfaces.
- **Semantic Conventions** — Standardized keys and values describing commonly observed concepts, protocols, and operations.
- **Contrib** — Optional plugins and instrumentation maintained by the OpenTelemetry project (API Contrib depends only on API; SDK Contrib also depends on SDK).

Required plugins like OTLP Exporters and TraceContext Propagators are included as part of the SDK.

## When to Use

- Instrumenting applications with distributed tracing, metrics, or logs following the official spec
- Configuring OTLP exporters with environment variables for endpoint, headers, TLS/mTLS
- Implementing sampling strategies (AlwaysOn, AlwaysOff, TraceIdRatioBased, ProbabilitySampler, ParentBased)
- Setting up context propagation across service boundaries using W3C TraceContext and Baggage
- Building observability pipelines with the OpenTelemetry Collector
- Applying semantic conventions for attributes, resources, and instrumentation scope
- Designing metrics with Views, aggregations (Sum, Gauge, Histogram, ExponentialHistogram), and exemplars
- Working with the OTLP data model for traces, metrics, logs, and profiles
- Migrating from legacy systems (Zipkin exporter is deprecated as of 1.55.0)

## Core Concepts

**Signals**: The primary observability dimensions — Traces (distributed request flows), Metrics (numerical measurements over time), Logs (structured events), Baggage (propagated name/value pairs), and Profiles (CPU/memory flame graphs).

**Context**: An immutable propagation mechanism carrying execution-scoped values across API boundaries. All signals share the same Context for in-process state access. Supports explicit and implicit (thread-local/async-local) modes.

**Span**: A single operation within a trace, containing name, start/end timestamps, attributes, events, status, parent reference, and SpanContext. Traces are directed acyclic graphs (DAGs) of spans.

**SpanContext**: The propagated portion of a span — TraceId (16 bytes), SpanId (8 bytes), TraceFlags (1 byte bitmap with sampling bit `0x1`), and TraceState (vendor-specific key-value list).

**Resource**: Captures information about the entity for which telemetry is recorded. Composed of Entities (structured identity) and raw attributes. Examples: cloud provider, Kubernetes pod, container, process, service name.

**Instrumentation Scope**: Identifies the source of telemetry — typically a library name, version, schema URL, and optional attributes. Distinct from Resource which identifies the observed entity.

**OTLP (OpenTelemetry Protocol)**: The standard wire protocol for exporting telemetry. Supports both HTTP/protobuf (port 4318) and gRPC (port 4317). Per-signal paths are appended: `/v1/traces`, `/v1/metrics`, `/v1/logs`.

## Advanced Topics

**Tracing API & SDK**: TracerProvider, Tracer, Span creation, sampling strategies, span processors, ID generation → [Tracing](reference/01-tracing.md)

**Metrics API & SDK**: MeterProvider, instruments (Counter, Histogram, Gauge, UpDownCounter), Views, aggregations, exemplars, temporality → [Metrics](reference/02-metrics.md)

**Logs API & Data Model**: LoggerProvider, LogRecord fields, severity mapping, events format → [Logs](reference/03-logs.md)

**Context Propagation**: Context API, TextMapPropagator, W3C TraceContext headers, Baggage propagation → [Context and Propagation](reference/04-context-propagation.md)

**OTLP Protocol & Exporter**: Configuration options, environment variables, retry behavior, endpoint URLs → [OTLP Protocol](reference/05-otlp-protocol.md)

**Resources & Semantic Conventions**: Resource data model with entities, merging rules, attribute conventions → [Resources and Semantic Conventions](reference/06-resources-semantic-conventions.md)

**Versioning & Stability**: Signal lifecycle (Development → Stable → Deprecated → Removed), API/SDK stability guarantees → [Versioning and Stability](reference/07-versioning-stability.md)

