# Monitoring

> Application and server monitoring. Error tracking, log aggregation, alerting, uptime monitoring. Use for production setup. Don't use for development debugging.

- Skill: `neuron-one/monitoring` (Agent Skill)
- Install (CLI): `npx skillmds@latest add neuron-one/monitoring`
- Raw SKILL.md: https://api.skillmd.com/api/skills/neuron-one/monitoring/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: Coding & Dev Tools
- Author: neuron-one (https://skillmd.com/u/neuron-one)
- Updated: 2026-09-17
- Page: https://skillmd.com/skills/neuron-one/monitoring

---


# Production Monitoring

## Error Tracking
- Sentry for application errors
- Structured logging (JSON format)
- Error grouping by root cause
- Alert on new error types

## Metrics
- Response time (p50, p95, p99)
- Error rate (4xx, 5xx)
- Throughput (requests/sec)
- CPU/Memory/Disk usage

## Alerting Rules
- S1 (Critical): service down, data loss -> immediate
- S2 (High): error rate >5%, response >2s -> 15 min
- S3 (Medium): error rate >1%, disk >80% -> 1 hour
- S4 (Low): deprecation warnings -> daily

## Health Checks
- /health endpoint on every service
- Database connectivity check
- External dependency checks
- Synthetic monitoring (periodic requests)
