api-observability-setup-axiom-pino-sentry
Observability Setup (Pino + Axiom + Sentry)
Quick Guide: One-time project setup for observability. Install
pino,next-axiom,@sentry/nextjs. Configure Axiom dataset + Vercel integration. Set up Sentry DSN and config files. Wrapnext.config.tswithwithAxiomthenwithSentryConfig. Addinstrumentation.tsfor runtime-specific Sentry init. Source maps are uploaded automatically whenSENTRY_AUTH_TOKENis set in CI.
Detailed Resources:
- For code examples, see examples/ folder:
- examples/core.md - Dependencies, env vars, next.config.ts, instrumentation
- examples/sentry-config.md - Sentry configuration files (client, server, edge)
- examples/pino-logger.md - Pino logger setup with redaction
- examples/axiom-integration.md - Web Vitals and dashboard queries
- examples/ci-cd.md - GitHub Actions source maps upload
- examples/health-check.md - Health check endpoints
- For decision frameworks and anti-patterns, see reference.md
<critical_requirements>
CRITICAL: Before Using This Skill
All code must follow project conventions in CLAUDE.md (kebab-case, named exports, import ordering,
import type, named constants)
(You MUST create separate Axiom datasets for each environment - development, staging, production)
(You MUST configure all three Sentry config files - sentry.client.config.ts, sentry.server.config.ts, sentry.edge.config.ts)
(You MUST add source maps upload to CI/CD - Sentry needs source maps for readable stack traces)
(You MUST install pino-pretty as a devDependency only - never use in production)
</critical_requirements>
Auto-detection: pino, next-axiom, @sentry/nextjs, Axiom, Sentry, observability setup, logging setup, error tracking setup, source maps, sentry.client.config, sentry.server.config, sentry.edge.config, withAxiom, withSentryConfig
When to use:
- Setting up a new project that needs logging and error tracking
- Adding observability to an existing project without it
- Migrating from another logging/error tracking solution to Axiom + Sentry
When NOT to use:
- Adding new log statements to existing code (ongoing usage, not initial setup)
- Configuring alerts, monitors, or dashboards after initial setup
- Debugging production issues with existing observability
Key patterns covered:
- Dependency installation (Pino, next-axiom, @sentry/nextjs, pino-pretty)
- Environment variables template (
.env.example) next.config.tswithwithAxiom()andwithSentryConfig()wrappers- Sentry configuration files (client, server, edge)
instrumentation.tsfor Sentry initialization- GitHub Actions for source maps upload
- Pino logger with development/production modes
- Health check endpoints
- Initial Axiom dashboard setup
Philosophy
Observability is not optional for production apps. Without logging and error tracking, debugging production issues becomes guesswork. The Pino + Axiom + Sentry stack provides:
- Pino: Fast structured JSON logging (5x faster than Winston)
- Axiom: Unified logs, traces, and metrics with Vercel integration
- Sentry: Error tracking with source maps and release tracking
This skill covers one-time setup only. For ongoing usage patterns (log levels, structured fields, correlation IDs, alert configuration), use your observability usage skill.
Core Patterns
Pattern 1: Dependency Installation
Install all observability packages with correct dependency types.
# Production dependencies
npm install pino next-axiom @sentry/nextjs
# Development dependencies (pretty printing for local dev)
npm install -D pino-pretty
Why: pino-pretty as devDependency prevents production bundle bloat (~500KB), all core packages are production dependencies for runtime use.
For detailed code examples with good/bad comparisons, see examples/core.md.
Pattern 2: Environment Variables Template
Create .env.example with all required observability variables documented. Group by service, use comments to explain where to get each value, and maintain separate datasets per environment.
Key variables needed:
NEXT_PUBLIC_AXIOM_DATASET- Dataset name (e.g.,myapp-dev,myapp-prod)NEXT_PUBLIC_AXIOM_TOKEN- API token with ingest permissionNEXT_PUBLIC_SENTRY_DSN- Sentry DSN from project settingsSENTRY_AUTH_TOKEN- For source maps upload in CISENTRY_ORG/SENTRY_PROJECT- Organization and project slugs
For complete template with all variables, see examples/core.md.
Pattern 3: next.config.ts with withAxiom and withSentryConfig
Wrap Next.js config with withAxiom for logging integration, then withSentryConfig for source map handling.
Key configuration points:
withAxiomwraps first (inner), Sentry wraps outersilent: !process.env.CIsuppresses source map upload logs locally- Source maps are hidden by default in v9+ (no
hideSourceMapsneeded) - Use
sourcemaps.deleteSourcemapsAfterUploadto clean up after upload
import { withSentryConfig } from "@sentry/nextjs";
import { withAxiom } from "next-axiom";
const nextConfig = {
/* your config */
};
export default withSentryConfig(withAxiom(nextConfig), {
org: process.env.SENTRY_ORG,
project: process.env.SENTRY_PROJECT,
authToken: process.env.SENTRY_AUTH_TOKEN,
silent: !process.env.CI,
});
For complete configuration example, see examples/core.md.
Pattern 4: Sentry Configuration Files
Create all three Sentry config files for client, server, and edge runtimes.
Required files:
sentry.client.config.ts- Client-side with replay integrationsentry.server.config.ts- Server-side with local variables capturesentry.edge.config.ts- Edge runtime with limited features
Key considerations:
- Use named constants for sample rates
- Environment-specific configuration (debug mode, sample rates)
- Filter expected errors with
beforeSend - v9+:
hideSourceMapsandenableTracingremoved, source maps hidden by default
For complete file templates, see examples/sentry-config.md.
Pattern 5: Instrumentation File
Create instrumentation.ts for proper Sentry initialization in Next.js. Uses dynamic imports to load the correct config for each runtime.
import * as Sentry from "@sentry/nextjs";
export async function register() {
if (process.env.NEXT_RUNTIME === "nodejs") {
await import("./sentry.server.config");
}
if (process.env.NEXT_RUNTIME === "edge") {
await import("./sentry.edge.config");
}
}
// Next.js 15+ error handling hook
export const onRequestError = Sentry.captureRequestError;
Why: Dynamic imports prevent loading wrong config for runtime, onRequestError hook captures Server Component errors automatically (Next.js 15+).
Pattern 6: Web Vitals Component
Add <AxiomWebVitals /> component to root layout for automatic Core Web Vitals (LCP, INP, CLS) reporting to Axiom.
Note: Web Vitals are only sent from production deployments, not local development.
For implementation example, see examples/axiom-integration.md.
Pattern 7: GitHub Actions Source Maps Upload
Configure CI/CD to upload source maps to Sentry on deployment. Key requirements:
SENTRY_AUTH_TOKENin build environment enables automatic upload- Use
getsentry/action-release@v3for release creation - Tie version to git SHA for release tracking
For complete workflow template, see examples/ci-cd.md.
Pattern 8: Health Check Endpoint
Add health check endpoints that integrate with your observability stack:
- Shallow check - Fast response for load balancer probes, includes version for Sentry release correlation
- Deep check - Verifies dependencies, logs failures via Pino for Axiom dashboard visibility
For implementation examples, see examples/health-check.md.
Pattern 9: Pino Logger Setup
Configure Pino with development/production modes:
- Development:
pino-prettyfor human-readable output - Production: JSON for log aggregation ingestion
- Base fields for context in every log
- Redaction of sensitive fields
For complete configuration, see examples/pino-logger.md.
Pattern 10: Axiom Dashboard Setup
After setting up, create initial dashboards in Axiom:
- Request volume per minute
- Error rate percentage
- Response time P95
- Top errors
- Web Vitals metrics
For APL query examples, see examples/axiom-integration.md.
<decision_framework>
Decision Framework
See reference.md for complete decision trees:
- Log Destinations: Where logs should go in each environment
- Sentry vs Axiom for Errors: Which system handles which error types
</decision_framework>
<red_flags>
RED FLAGS
See reference.md for complete list.
High Priority:
- Committing Axiom tokens or Sentry DSN to version control
- Using pino-pretty in production
- Missing source maps upload in CI
- Same Axiom dataset for all environments
Common Mistakes:
- Forgetting to wrap
next.config.tswithwithAxiom - Missing
instrumentation.ts - Using removed Sentry options (
hideSourceMaps,enableTracing,disableServerWebpackPlugin) - Hardcoding sample rates instead of named constants
</red_flags>
<critical_reminders>
CRITICAL REMINDERS
All code must follow project conventions in CLAUDE.md
(You MUST create separate Axiom datasets for each environment - development, staging, production)
(You MUST configure all three Sentry config files - sentry.client.config.ts, sentry.server.config.ts, sentry.edge.config.ts)
(You MUST add source maps upload to CI/CD - Sentry needs source maps for readable stack traces)
(You MUST install pino-pretty as a devDependency only - never use in production)
Failure to follow these rules will result in missing logs, unreadable errors, and security vulnerabilities.
</critical_reminders>
More from agents-inc/skills
web-animation-css-animations
CSS Animation patterns - transitions, keyframes, scroll-driven animations, @property, GPU-accelerated properties, accessibility with prefers-reduced-motion
20web-testing-playwright-e2e
Playwright E2E testing patterns - test structure, Page Object Model, locator strategies, assertions, network mocking, visual regression, parallel execution, fixtures, and configuration
18web-animation-view-transitions
View Transitions API patterns - same-document transitions, cross-document MPA transitions, shared element animations, pseudo-element styling, accessibility
17web-animation-framer-motion
Motion (formerly Framer Motion) animation patterns - motion components, variants, gestures, layout animations, scroll-linked animations, accessibility
17web-styling-cva
Class Variance Authority - type-safe component variant styling with cva(), compound variants, and VariantProps
16web-i18n-next-intl
Type-safe i18n for Next.js App Router
16