AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
SKILL verified Apache-2.0 Self-run

Otel Collector

skill-dash0hq-agent-skills-otel-collector · by dash0hq

Expert guidance for configuring and deploying the OpenTelemetry Collector. Use when setting up a Collector pipeline, configuring receivers, exporters, or processors, deploying a Collector to Kubernetes or Docker, or forwarding telemetry to Dash0. Triggers on requests involving collector, pipeline, OTLP receiver, exporter, or Dash0 collector setup.

No reviews yet
0 installs
18 views
0.0% view→install

Install

$ agentstack add skill-dash0hq-agent-skills-otel-collector

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/skill-dash0hq-agent-skills-otel-collector)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
2mo ago

Declared compatibility

Claude CodeClaude Desktop

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Otel Collector? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

OpenTelemetry Collector configuration guide

Expert guidance for configuring and deploying the OpenTelemetry Collector to receive, process, and export telemetry.

Rules

| Rule | Description | |------|-------------| | [receivers](./rules/receivers.md) | Receivers — OTLP, Prometheus, filelog, hostmetrics | | [exporters](./rules/exporters.md) | Exporters — OTLP/gRPC to Dash0, debug, authentication | | [processors](./rules/processors.md) | Processors — memory limiter, resource detection, ordering, sending queue | | [pipelines](./rules/pipelines.md) | Pipelines — service section, per-signal configuration, connectors | | [deployment](./rules/deployment.md) | Deployment — agent vs gateway patterns, deployment method selection | | [dash0-operator](./rules/deployment/dash0-operator.md) | Dash0 Kubernetes Operator — automated instrumentation, Collector management, Dash0 export | | [collector-helm-chart](./rules/deployment/collector-helm-chart.md) | Collector Helm chart — presets, modes, image selection | | [opentelemetry-operator](./rules/deployment/opentelemetry-operator.md) | OpenTelemetry Operator — Collector CRD, auto-instrumentation, sidecar | | [raw-manifests](./rules/deployment/raw-manifests.md) | Raw Kubernetes manifests — DaemonSet, Deployment, RBAC, Docker Compose | | [sampling](./rules/sampling.md) | Sampling — head, tail, load balancing | | [red-metrics](./rules/red-metrics.md) | RED metrics — span-derived request rate, error rate, duration histograms | | [custom-distributions](./rules/custom-distributions.md) | Custom distributions — building a stripped-down Collector binary with OCB |

Key principles

  • Processor ordering matters.

Place memory_limiter first in every pipeline. Use the exporter's sending_queue with file_storage instead of the batch processor. Incorrect ordering causes memory exhaustion or data loss.

  • One pipeline per signal type.

Define separate pipelines for traces, metrics, and logs. Mixing signals in a single pipeline breaks processing and causes runtime errors.

  • Every declared component must appear in a pipeline.

The Collector rejects configurations that declare receivers, processors, or exporters not referenced by any pipeline.

  • Consistent resource enrichment across pipelines.

Apply processors that enrich resource attributes like resourcedetection and k8sattributes to every signal pipeline (traces, metrics, and logs), not just one. If one pipeline enriches telemetry with k8s.namespace.name or host.name but another does not, correlation between signals is compromised by incomplete metadata.

  • Memory safety is non-negotiable.

Always configure memory_limiter in production. Without it, a burst of telemetry can cause the Collector to OOM and crash.

Quick start

Minimal working configuration: OTLP receiver → memory limiter → OTLP/gRPC exporter to Dash0.

receivers:
  otlp:
    protocols:
      grpc:
        endpoint: 0.0.0.0:4317
      http:
        endpoint: 0.0.0.0:4318

processors:
  memory_limiter:
    check_interval: 1s
    limit_mib: 400
    spike_limit_mib: 100

exporters:
  otlp:
    endpoint: ingress.eu-west-1.aws.dash0.com:4317
    headers:
      Authorization: "Bearer ${env:DASH0_TOKEN}"
    sending_queue:
      enabled: true
      storage: file_storage

service:
  pipelines:
    traces:
      receivers: [otlp]
      processors: [memory_limiter]
      exporters: [otlp]
    metrics:
      receivers: [otlp]
      processors: [memory_limiter]
      exporters: [otlp]
    logs:
      receivers: [otlp]
      processors: [memory_limiter]
      exporters: [otlp]

See [exporters](./rules/exporters.md) for full authentication and queue configuration, and [processors](./rules/processors.md) for adding resource detection.

Configuration workflow

  1. Write config — define receivers, processors, and exporters; wire them in service.pipelines.
  2. Validate locally — run otelcol validate --config=config.yaml to catch structural errors before deployment.
  3. Deploy — choose a deployment method from the [deployment](./rules/deployment.md) rule (Helm, Operator, raw manifests, or Docker Compose).
  4. Verify — add the debug exporter to a pipeline temporarily and inspect stdout to confirm telemetry is flowing; then remove it before going to production.

Quick reference

| What do you need? | Rule | |--------------------|------| | Accept OTLP telemetry from applications | [receivers](./rules/receivers.md) | | Scrape Prometheus endpoints | [receivers](./rules/receivers.md) | | Collect log files or host metrics | [receivers](./rules/receivers.md) | | Send telemetry to Dash0 | [exporters](./rules/exporters.md) | | Configure retry, queue, or compression | [exporters](./rules/exporters.md) | | Set processor ordering | [processors](./rules/processors.md) | | Add Kubernetes or cloud metadata | [processors](./rules/processors.md) | | Wire receivers → processors → exporters | [pipelines](./rules/pipelines.md) | | Complete working configuration | [pipelines](./rules/pipelines.md) | | Validate the pipeline with the debug exporter | [collector-helm-chart](./rules/deployment/collector-helm-chart.md), [opentelemetry-operator](./rules/deployment/opentelemetry-operator.md), [raw-manifests](./rules/deployment/raw-manifests.md), or [dash0-operator](./rules/deployment/dash0-operator.md) | | Deploy as DaemonSet or Deployment | [raw-manifests](./rules/deployment/raw-manifests.md) | | Deploy with Helm | [collector-helm-chart](./rules/deployment/collector-helm-chart.md) | | Deploy with the OTel Operator | [opentelemetry-operator](./rules/deployment/opentelemetry-operator.md) | | Deploy with the Dash0 Operator | [dash0-operator](./rules/deployment/dash0-operator.md) | | Auto-instrument applications in Kubernetes | [opentelemetry-operator](./rules/deployment/opentelemetry-operator.md) or [dash0-operator](./rules/deployment/dash0-operator.md) | | Local development with Docker Compose | [raw-manifests](./rules/deployment/raw-manifests.md) | | Reduce trace volume | [sampling](./rules/sampling.md) | | Keep errors and slow traces, drop the rest | [sampling](./rules/sampling.md) | | Redact sensitive data in the pipeline | [processors](./rules/processors.md#sensitive-data-redaction) | | Generate RED metrics from traces | [red-metrics](./rules/red-metrics.md) | | Build a custom Collector binary | [custom-distributions](./rules/custom-distributions.md) |

Official documentation

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.