Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
thebeardedbearsas avatar

Observability

  • 113 installs
  • 99 repo stars
  • Updated August 4, 2026
  • thebeardedbearsas/claude-craft

Helps with ai & agent building tasks.

About

observability is a Claude Code skill for ai & agent building. It helps solo builders move faster with AI-assisted coding.

  • observability
  • AI & Agent Building
  • AI-coding skill

Observability by the numbers

  • 113 all-time installs (skills.sh)
  • Ranked #3,984 of 16,546 AI & Agent Building skills by installs in the Skillselion catalog
  • Data as of Aug 5, 2026 (Skillselion catalog sync)
npx skills add https://github.com/thebeardedbearsas/claude-craft --skill observability

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs113
repo stars99
Last updatedAugust 4, 2026
Repositorythebeardedbearsas/claude-craft

What it does

Helps with ai & agent building tasks.

Files

SKILL.mdMarkdownGitHub ↗

Observability — OpenTelemetry & Distributed Tracing

Instrumentation moderne avec OpenTelemetry pour métriques, traces et logs structurés.

Piliers de l'Observabilité

PilierTechnologiesMétriques clés
MetricsPrometheus, Grafana, DatadogRED (Rate, Errors, Duration), USE (Utilization, Saturation, Errors)
TracesOpenTelemetry, Jaeger, TempoP95 latency, span duration, error rate
LogsLoki, ElasticSearch, DatadogStructured JSON, correlation IDs

OpenTelemetry (OTel) Stack

// Node.js — Auto-instrumentation
const { NodeSDK } = require('@opentelemetry/sdk-node');
const { getNodeAutoInstrumentations } = require('@opentelemetry/auto-instrumentations-node');

const sdk = new NodeSDK({
  traceExporter: new OTLPTraceExporter(),
  instrumentations: [getNodeAutoInstrumentations()],
});

sdk.start();

Golden Signals (Google SRE)

SignalDescriptionSeuil typique
LatencyP50, P95, P99 response timeP95 < 200ms
TrafficRequests per secondBaseline + alerting
ErrorsError rate (5xx, exceptions)< 0.1%
SaturationCPU, Memory, Disk< 80% sustained

Structured Logging (JSON)

{
  "timestamp": "2026-04-17T10:30:00Z",
  "level": "error",
  "message": "Payment processing failed",
  "trace_id": "4bf92f3577b34da6a3ce929d0e0e4736",
  "span_id": "00f067aa0ba902b7",
  "service.name": "payment-api",
  "error.type": "PaymentGatewayTimeout"
}

SLI / SLO / SLA

ConceptExemple
SLI (Indicator)99.5% requests < 200ms
SLO (Objective)99.9% uptime mensuel
SLA (Agreement)99.95% uptime + pénalités

---

Pour instrumentation détaillée par stack : invoquer @observability-engineer

Related skills

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.