Habilidades otel-expert
📦

otel-expert

Seguro

获取 OpenTelemetry 实施指南

是否在为 OpenTelemetry 语义约定、收集器配置或插装模式而烦恼?此技能可从捆绑的 OTel 文档中提供即时答案,帮助您实现正确的跟踪、跨度、指标和日志记录,而无需搜索多个文档。

Suporta: Claude Codex Code(CC)
📊 70 Adequado
1

Baixar o ZIP da skill

2

Upload no Claude

Vá em Configurações → Capacidades → Skills → Upload skill

3

Ative e comece a usar

Testar

A utilizar "otel-expert". What attributes should I use for HTTP server spans?

Resultado esperado:

For HTTP server spans, use these semantic convention attributes:

| Attribute | Type | Description |
|-----------|------|-------------|
| http.request.method | string | HTTP request method (GET, POST, etc) |
| url.path | string | URL path portion |
| http.response.status_code | int | HTTP status code |
| server.address | string | Server host name |
| server.port | int | Server port number |

Source: docs/semantic-conventions/http.md

A utilizar "otel-expert". How do I create custom spans in .NET?

Resultado esperado:

Create an ActivitySource and use it to create spans:

var activitySource = new ActivitySource("MyApp.Service");

using var activity = activitySource.StartActivity("ProcessOrder");
activity?.SetTag("order.id", orderId);
activity?.SetTag("customer.id", customerId);

Source: docs/instrumentation/dotnet.md

Auditoria de Segurança

Seguro
v6 • 1/21/2026

This skill is a documentation helper that provides OpenTelemetry guidance from bundled docs. Static analysis flagged 17 patterns but all are false positives: hash fields in metadata, empty JSON arrays, and documentation examples with template variables. No actual security risks detected.

2
Arquivos analisados
307
Linhas analisadas
0
achados
6
Total de auditorias
Nenhum problema de segurança encontrado
Auditado por: claude Ver Histórico de Auditoria →

Pontuação de qualidade

38
Arquitetura
100
Manutenibilidade
87
Conteúdo
30
Comunidade
100
Segurança
83
Conformidade com especificações

O Que Você Pode Construir

后端开发者添加分布式跟踪

.NET 开发人员需要使用正确的跨度属性和活动源来为其微服务进行插装,遵循 OpenTelemetry 语义约定。

平台工程师配置 OTel 收集器

DevOps 工程师需要在 OpenTelemetry 收集器中配置处理器和导出器,以将遥测数据路由到其可观测性平台。

SRE 实施可观测性标准

SRE 团队正在建立整个组织的遥测标准,需要快速参考指标、日志和跟踪属性约定。

Tente Estes Prompts

查找语义约定属性
What semantic convention attributes should I use for HTTP server spans?
配置收集器组件
How do I configure a batch processor in the OpenTelemetry collector?
生成 .NET 插装代码
Show me how to create custom spans with ActivitySource in .NET 10
了解 OTLP 协议详情
What are the OTLP exporter configuration options and how do I set compression?

Melhores Práticas

  • 始终先检查 INDEX.md 以找到您问题的相关文档文件
  • 在引用之前查看 SYNC-REPORT.md 以了解捆绑文档的任何验证警告
  • 使用最新稳定版本的语义约定属性以避免已弃用的模式

Evitar

  • 不要假设特定供应商的导出器配置适用于标准 OTLP
  • 不要在未检查当前规范的情况下使用已弃用的语义约定属性
  • 在提供可能过时的文档答案时,不要跳过检查 SYNC-REPORT.md 警告

Perguntas Frequentes

此技能捆绑了哪些文档?
该技能包括 OpenTelemetry 语义约定、收集器配置参考、.NET 插装指南和存储在 docs 目录中的 OTLP 协议规范。
这适用于 .NET 以外的编程语言吗?
虽然代码示例侧重于 .NET 10 模式,但语义约定和收集器配置适用于所有语言。您可以请求语言无关的属性和配置信息。
捆绑的文档有多新?
文档仅包括最新的稳定语义约定。请查看 SYNC-REPORT.md 以了解捆绑文档的任何验证警告。
此技能可以帮助我配置特定供应商的导出器吗?
此技能侧重于标准 OTLP 导出配置。对于 Jaeger 或 Prometheus 等特定供应商的导出器,请查阅供应商文档。
此技能使用哪些工具?
该技能使用 Read、Grep 和 Glob 工具从捆绑的 OpenTelemetry 文档文件中搜索和检索信息。不执行网络或外部命令。
如何找到特定的语义约定属性?
首先检查 INDEX.md 以获取主题映射,然后使用 Grep 在 docs/semantic-conventions 目录中搜索特定的属性名称。该技能将提供包含名称、类型和描述的属性表。

Detalhes do Desenvolvedor

Estrutura de arquivos

📄 SKILL.md