Token导航 LogoToken导航TokenDH.com
运维和基础设施只读github未标认证来源可访问许可证需确认审计通过

otel-collector酒店收藏家

Agent Skill

otel-collector 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,904

周安装

166

GitHub Stars

50

下载量

1,368
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:otel-collector(酒店收藏家)
来源仓库:https://github.com/dash0hq/agent-skills
仓库路径:skills/otel-collector
安装命令:
npx skills add https://github.com/dash0hq/agent-skills --skill otel-collector
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dash0hq/agent-skills --skill otel-collector

简介

otel-collector 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息。

  • 适合在需要围绕仓库状态、代码变更或协作事项进行整理的场景中使用。
  • 通过 npx skills add 命令从 dash0hq/agent-skills 仓库安装。
  • 安装前建议确认权限范围和维护状态,避免触发联网或文件读写操作。
  • 使用时需结合项目实际架构,不要仅按通用模板修改代码结构。

SKILL.md

OpenTelemetry Collector configuration guide

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

Rules

RuleDescription
receiversReceivers — OTLP, Prometheus, filelog, hostmetrics
exportersExporters — OTLP/gRPC to Dash0, debug, authentication
processorsProcessors — memory limiter, resource detection, ordering, sending queue
pipelinesPipelines — service section, per-signal configuration, connectors
deploymentDeployment — agent vs gateway patterns, deployment method selection
dash0-operatorDash0 Kubernetes Operator — automated instrumentation, Collector management, Dash0 export
collector-helm-chartCollector Helm chart — presets, modes, image selection
opentelemetry-operatorOpenTelemetry Operator — Collector CRD, auto-instrumentation, sidecar
raw-manifestsRaw Kubernetes manifests — DaemonSet, Deployment, RBAC, Docker Compose
samplingSampling — head, tail, load balancing
red-metricsRED metrics — span-derived request rate, error rate, duration histograms
custom-distributionsCustom 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 for full authentication and queue configuration, and processors 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 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 applicationsreceivers
Scrape Prometheus endpointsreceivers
Collect log files or host metricsreceivers
Send telemetry to Dash0exporters
Configure retry, queue, or compressionexporters
Set processor orderingprocessors
Add Kubernetes or cloud metadataprocessors
Wire receivers → processors → exporterspipelines
Complete working configurationpipelines
Validate the pipeline with the debug exportercollector-helm-chart, opentelemetry-operator, raw-manifests, or dash0-operator
Deploy as DaemonSet or Deploymentraw-manifests
Deploy with Helmcollector-helm-chart
Deploy with the OTel Operatoropentelemetry-operator
Deploy with the Dash0 Operatordash0-operator
Auto-instrument applications in Kubernetesopentelemetry-operator or dash0-operator
Local development with Docker Composeraw-manifests
Reduce trace volumesampling
Keep errors and slow traces, drop the restsampling
Redact sensitive data in the pipelineprocessors
Generate RED metrics from tracesred-metrics
Build a custom Collector binarycustom-distributions

Official documentation

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

38.29%
按下载量换算524

Claude

28.03%
按下载量换算383

Cursor

16.61%
按下载量换算227

Gemini CLI

9.53%
按下载量换算130

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

只读

该 Skill 主要提供规则、说明或参考内容,本身偏只读;真正读写文件、联网或执行命令仍取决于宿主 Agent 的任务。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills