opentelemetry

opentelemetry is a skill for Claude Code, Codex from neverinfamous/mysql-mcp. It costs 71 tokens per session (1,044 once invoked), scanned A, original, MIT.

A set of standards for OpenTelemetry, an open system for recording application traces, measurements, and structured logs.

In plain words
What is it for?
It helps instrument web requests, database calls, background jobs, AI model calls, and tool calls with distributed tracing, metrics, and structured logging.
Why use it?
It helps developers follow consistent observability practices while preventing private data and secrets from entering logs.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit It helps instrument web requests, database calls, background jobs, AI model calls, and tool calls with distributed tracing, metrics, and structured logging.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/neverinfamous/mysql-mcp/opentelemetry
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add neverinfamous/mysql-mcp --skill opentelemetry
Clone the repo
git clone --depth 1 https://github.com/neverinfamous/mysql-mcp

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for opentelemetry

README.md
[![agentmods](https://agentmods.dev/badge/skills/neverinfamous/mysql-mcp/opentelemetry/github.svg)](https://agentmods.dev/skills/neverinfamous/mysql-mcp/opentelemetry)
Your own site
<a href="https://agentmods.dev/skills/neverinfamous/mysql-mcp/opentelemetry"><img src="https://agentmods.dev/badge/skills/neverinfamous/mysql-mcp/opentelemetry/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for opentelemetry

Your own site · 80×15
<a href="https://agentmods.dev/skills/neverinfamous/mysql-mcp/opentelemetry"><img src="https://agentmods.dev/badge/skills/neverinfamous/mysql-mcp/opentelemetry.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 71 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,044 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector pass 7 Sept 2026
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00071 $0.01044
Opus 5 $0.00036 $0.00522
Sonnet 5 $0.00014 $0.00209
Haiku 4.5 $0.00007 $0.00104

Measured 9d ago against content hash 38435bb9eb54, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-09, from the pricing page.

Security

Grade A, and why

opentelemetry scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/opentelemetry/SKILL.md · 77 lines

How it starts

The opening of the file, as written. The whole thing — 77 lines — stays where its author put it; the contents beside it link to each section on GitHub.

OpenTelemetry (OTel)

Production standards for instrumenting applications to achieve high-fidelity observability.

1. Distributed Tracing

  • Auto-Instrumentation & eBPF: Rely heavily on auto-instrumentation and "OTel Blueprints." Manual spans are reserved specifically for complex business logic.
  • Trace Context Propagation: Always propagate the traceparent and tracestate headers across HTTP and RPC boundaries (using W3C Trace Context).
  • Span Granularity: Create spans for logical units of work. Avoid creating spans for every single function call (which causes overhead). Focus on:
    • Incoming HTTP requests
    • Database queries
    • GenAI Observability (tracking LLM calls, token exchanges, tool invocations)
    • Background task executions
  • Semantic Conventions: Use standardized span attributes (e.g., http.method, http.status_code, db.system). Do not invent custom attribute names when standard ones exist.
  • GenAI Semantic Conventions: When tracing LLM interactions, agent orchestration, or Model Context Protocol (MCP) tool calls, you MUST use the official gen_ai.* semantic conventions (e.g., gen_ai.system, gen_ai.request.model, gen_ai.usage.prompt_tokens). This ensures observability vendors (like Datadog) can properly map and analyze AI token usage and latency.

2. Span Implementation Guidelines

  • Status and Errors: explicitly set the span status to Error when an exception occurs, and record the exception object on the span.
  • Payloads: Avoid logging sensitive PII or massive payloads in span attributes. Log structural identifiers (e.g., user.id, tenant.id).
// Example: Creating a Span in Node.js
tracer.startActiveSpan('database.query', (span) => {
  try {
    span.setAttribute('db.statement', queryText)
    const result = db.execute(queryText)
    span.setStatus({ code: SpanStatusCode.OK })
    return result
  } catch (error) {
    span.recordException(error)
    span.setStatus({ code: SpanStatusCode.ERROR, message: error.message })
    throw error
  } finally {
    span.end()
  }
})

Read the full file on GitHub · 77 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 77 lines · 71 tokens per session scan A 38435bb9eb54

Subscribe to this mod's changes

opentelemetry is a skill published in the GitHub repository neverinfamous/mysql-mcp (10 stars, last pushed 2d ago), licensed MIT. It adds 71 tokens to every session and 1,044 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

python-sdk

Implement or modify Python SDK behavior under python/composio, including tools, toolkits, sessions, auth configs, connected accounts, client integration, and shared Python models. Use for Python core runtime/API work; pair with python-testing and cross-sdk-parity when TypeScript must match.

ComposioHQ/composio · 60 tokens

potpie-infra-architecture

Use for project infra and architecture context: environments, adapters, runtime configuration, deployments, service dependencies, datastores, API contracts, ownership, incidents, and dependency blast radius.

potpie-ai/potpie · 43 tokens

memstack-automation-webhook-designer

Use this skill when the user says 'webhook', 'webhook handler', 'webhook endpoint', 'receive events', 'HMAC verification', 'idempotency', or needs secure webhook handlers with signature verification, retry handling, and dead letter queues. Do NOT use for full n8n workflows or scheduled tasks.

cwinvestments/memstack · 74 tokens

telegram

Owner-only Telegram text bridge and Mini App gateway for the existing Ouroboros interface.

razzant/ouroboros · 19 tokens

agentsop-streaming-output

Enhancement-overlay decision protocol for STREAMING the output of long-running LLM / agent runs from the backend, not just wiring a typing animation in the UI. Activates when a coder agent must stream final tokens to a chat client, surface intermediate agent steps (which tool, which node, partial reasoning), emit…

agentsope/SkillAlchemy · 140 tokens

lap

LAP CLI -- compile, search, and manage API specs for AI agents. Use when working with API specifications (OpenAPI, GraphQL, AsyncAPI, Protobuf, Postman), compiling specs to LAP format, searching the LAP registry, generating skills from API specs, or publishing APIs. Commands: init, compile, search, get, skill…

Lap-Platform/LAP · 89 tokens