惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

L
LangChain Blog
B
Blog RSS Feed
阮一峰的网络日志
阮一峰的网络日志
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Help Net Security
MyScale Blog
MyScale Blog
WordPress大学
WordPress大学
Microsoft Azure Blog
Microsoft Azure Blog
GbyAI
GbyAI
小众软件
小众软件
大猫的无限游戏
大猫的无限游戏
Martin Fowler
Martin Fowler
Vercel News
Vercel News
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
Microsoft Security Blog
Microsoft Security Blog
G
Google Developers Blog
Last Week in AI
Last Week in AI
Hugging Face - Blog
Hugging Face - Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 【当耐特】
Google DeepMind News
Google DeepMind News
Engineering at Meta
Engineering at Meta
云风的 BLOG
云风的 BLOG

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
The Resilience & Observability Stack
Sreeraj Sree · 2026-05-11 · via DEV Community

Building Production-Ready FastAPI in 2026

Your API works. But is it production-ready?


Why This Matters

In 2026, "Contract-First" development means more than an OpenAPI spec. It means three implicit promises to every consumer:

  • Errors are predictable — every failure returns a structured, documented payload
  • Health is visible — logs, metrics, and traces tell a coherent story
  • The system self-heals — transient failures retry; abuse gets throttled

This article covers the two pillars that deliver on those promises:

  • Observability: Structlog + Prometheus + Sentry + Rich
  • Resilience: Tenacity + SlowAPI

Pillar 1: Enterprise Observability

Structlog — Centralized JSON Logging

Cloud environments need machine-readable logs. Structlog gives you JSON in production and human-friendly output locally — toggled by a single env var.

# app/core/logging.py
import structlog

def configure_logging() -> None:
    processors = [
        structlog.contextvars.merge_contextvars,
        structlog.stdlib.add_log_level,
        structlog.processors.TimeStamper(fmt="iso"),
        structlog.processors.JSONRenderer()  # swap for ConsoleRenderer() locally
        if settings.ENVIRONMENT == "production"
        else structlog.dev.ConsoleRenderer(colors=True),
    ]
    structlog.configure(processors=processors, cache_logger_on_first_use=True)

Enter fullscreen mode Exit fullscreen mode

In production, every log entry is a clean, indexable JSON object. In development, it's colourised and human-readable — no config changes required.


Rich — Beautiful Local Console Output

Install Rich tracebacks globally and your terminal shows full variable state at every frame of an exception — invaluable for debugging async SQLAlchemy sessions.

from rich.traceback import install as install_rich_traceback
install_rich_traceback(show_locals=True, width=120)

Enter fullscreen mode Exit fullscreen mode

Instead of a wall of text, you get colour-coded output with file references and local variable values at the exact line that failed.


Prometheus — Metrics in Two Lines

from prometheus_fastapi_instrumentator import Instrumentator

Instrumentator().instrument(app).expose(app, endpoint="/metrics")

Enter fullscreen mode Exit fullscreen mode

You get request counts, latency histograms, and in-flight connections out of the box — ready for Grafana dashboards and SLO alerting.


Sentry — Error Tracking That Talks to Your Frontend

The critical constraint most templates miss: Sentry by default drops HTTPException.detail — the exact string your React frontend reads to show users a meaningful message like "User already exists".

Fix it with a before_send hook:

from fastapi import HTTPException

def before_send(event: dict, hint: dict) -> dict | None:
    exc_info = hint.get("exc_info")
    if exc_info:
        _, exc_value, _ = exc_info
        if isinstance(exc_value, HTTPException):
            event.setdefault("extra", {})
            event["extra"]["http_exception_detail"] = exc_value.detail
            event["extra"]["status_code"] = exc_value.status_code
            event.setdefault("tags", {})["http_status"] = str(exc_value.status_code)
    return event

sentry_sdk.init(dsn=settings.SENTRY_DSN, before_send=before_send, ...)

Enter fullscreen mode Exit fullscreen mode

Now every 409 Conflict in your Sentry dashboard shows exactly what the user saw. Filter by http_status:409 across your entire project instantly.


Pillar 2: Application Resilience

Tenacity — Retries for Transient Failures

Kubernetes rolling deploys, Aurora cold starts, and flaky network hops all introduce brief connectivity gaps. Without retries, those gaps become 500 errors. With Tenacity, they're invisible.

from tenacity import retry, stop_after_attempt, wait_exponential, retry_if_exception_type
from sqlalchemy.exc import OperationalError, DisconnectionError

db_retry = retry(
    retry=retry_if_exception_type((OperationalError, DisconnectionError)),
    stop=stop_after_attempt(3),
    wait=wait_exponential(multiplier=1, min=0.5, max=4),
    reraise=True,  # Still raises after exhaustion — Sentry catches it with full context
)

Enter fullscreen mode Exit fullscreen mode

Apply it as a decorator on any database or external HTTP call:

@db_retry
async def get_by_email(self, db: AsyncSession, email: str) -> User | None:
    result = await db.execute(select(User).where(User.email == email))
    return result.scalar_one_or_none()

Enter fullscreen mode Exit fullscreen mode

reraise=True ensures exhausted retries still propagate normally through your exception handlers, keeping Structlog and Sentry integration intact.


SlowAPI — Rate Limiting That Respects Your OpenAPI Contract

The subtle problem with naive rate limiting: the 429 response becomes an undocumented payload that breaks your auto-generated frontend client.

The fix is a custom handler that returns {"detail": "..."} — identical to every other FastAPI error:

from fastapi.responses import JSONResponse
from slowapi.errors import RateLimitExceeded

async def rate_limit_handler(request: Request, exc: RateLimitExceeded) -> JSONResponse:
    return JSONResponse(
        status_code=429,
        content={"detail": f"Rate limit exceeded: {exc.detail}. Please slow down."},
        headers={"Retry-After": "60"},
    )

app.add_exception_handler(RateLimitExceeded, rate_limit_handler)

Enter fullscreen mode Exit fullscreen mode

Apply per-route limits based on risk:

@router.post("/auth/login")
@limiter.limit("10/minute")   # Strict — brute-force bait
async def login(request: Request, payload: LoginRequest): ...

@router.post("/users/")
@limiter.limit("5/minute")    # Tight — prevent account creation spam
async def create_user(request: Request, payload: UserCreate): ...

Enter fullscreen mode Exit fullscreen mode


The Frontend Connection

Every tool above converges on one payoff: your React client always reads the same key.

Scenario Status Response
User already exists 409 {"detail": "User already exists"}
Rate limit hit 429 {"detail": "Rate limit exceeded..."}
Validation failure 422 {"detail": [...Pydantic errors]}
Server error 500 {"detail": "Internal server error"}

One Axios interceptor handles all of them:

client.interceptors.response.use(
  (res) => res,
  (error) => {
    const message = error.response?.data?.detail ?? "An unexpected error occurred.";
    toast.error(typeof message === "string" ? message : JSON.stringify(message));
    return Promise.reject(error);
  }
);

Enter fullscreen mode Exit fullscreen mode

No special-casing. No silent failures. One contract, end to end.


Conclusion

The gap between a demo API and a production API isn't features — it's operational maturity.

Tool What it solves
Structlog Structured logs for cloud aggregators
Rich Developer-friendly local debugging
Prometheus Latency metrics and SLO visibility
Sentry + before_send Error tracking with frontend-aware payloads
Tenacity Silent recovery from transient failures
SlowAPI + custom handler Rate limiting that honours your OpenAPI contract

Together, these six tools ensure your FastAPI app behaves with consistency and transparency — whether on a single VPS, a Kubernetes cluster, or a globally distributed edge network.

Ship with confidence.


Tags: fastapi python observability sentry prometheus structlog tenacity slowapi backend