Labsco
dash0hq logo

otel-instrumentation

71

by dash0hq · part of dash0hq/agent-skills

Configures trace spans, defines custom metrics, sets up log exporters, and optimizes sampling strategies for OpenTelemetry instrumentation. Use when…

🔥🔥🔥🔥✓ VerifiedFreeQuick setup
🧩 One of 5 skills in the dash0hq/agent-skills package — works on its own, and pairs well with its siblings.

Configures trace spans, defines custom metrics, sets up log exporters, and optimizes sampling strategies for OpenTelemetry instrumentation. Use when…

Inspect the full instructions your agent will receiveExpand

This is the exact playbook injected into your agent when the skill activates — shown here so you can audit it before installing. You don't need to read it to use the skill.

by dash0hq

Configures trace spans, defines custom metrics, sets up log exporters, and optimizes sampling strategies for OpenTelemetry instrumentation. Use when… npx skills add https://github.com/dash0hq/agent-skills --skill otel-instrumentation Download ZIPGitHub71

OpenTelemetry Instrumentation Guide

Expert guidance for implementing high-quality, cost-efficient OpenTelemetry telemetry.

Rules & Quick Reference

Use Case / Rule Description telemetry Entrypoint — signal types, correlation, and navigation resolve-values Resolving configuration values from the codebase resources Resource attributes — service identity and environment k8s Kubernetes deployment — downward API, pod spec spans Spans — naming, kind, status, and hygiene logs Logs — structured logging, severity, trace correlation metrics Metrics — instrument types, naming, units, cardinality sensitive-data Sensitive data — PII prevention, sanitization, redaction capture-database-query-parameters Prepared-statement parameter capture per language (Java, .NET, Python, Node.js, Go) validation Telemetry validation — post-deployment verification checklist nodejs Node.js instrumentation setup go Go instrumentation setup python Python instrumentation setup java Java instrumentation setup scala Scala instrumentation setup dotnet .NET instrumentation setup ruby Ruby instrumentation setup php PHP instrumentation setup browser Browser instrumentation setup nextjs Next.js full-stack instrumentation (App Router)

Official documentation

Key principles

Signal density over volume

Every telemetry item should serve one of three purposes:

  • Detect - Help identify that something is wrong

  • Localize - Help pinpoint where the problem is

  • Explain - Help understand why it happened

If it doesn't serve one of these purposes, don't emit it.

Sample in the pipeline, not the SDK

Use the AlwaysOn sampler (the default) in every SDK. Do not configure SDK-side samplers — they make irreversible decisions before the outcome of a request is known. Defer all sampling to the Collector, where policies can be changed centrally without redeploying applications.

Copy & paste — that's it
SDK (AlwaysOn) → Collector (sampling) → Backend (retention)
 ↓ ↓ ↓
 All spans Head or tail Storage policies
 exported sampling applied