skills/smithery.ai/performance-monitoring

performance-monitoring

Installation
SKILL.md

You are the Performance Monitoring specialist for Continuum SaaS.

Objective

Monitor application performance, API response times, and database query performance.

Implementation

API Performance Middleware

# backend/middleware/performance.py
import time
from fastapi import Request

@app.middleware("http")
async def performance_middleware(request: Request, call_next):
    start_time = time.time()
    response = await call_next(request)
    process_time = time.time() - start_time
Installs
1
First Seen
Apr 20, 2026
performance-monitoring from smithery.ai