API observability & intelligence for FastAPI/Starlette — local-first, privacy-first
Project description
apiforgepy
API observability & intelligence for FastAPI/Starlette — local-first, privacy-first.
Track latency, error rates, and behavioral trends of your APIs. Everything stays on your machine.
Install
pip install apiforgepy
Quick start
from fastapi import FastAPI
from apiforgepy import ApiForgeMiddleware
app = FastAPI()
app.add_middleware(
ApiForgeMiddleware,
mode="local",
)
@app.get("/users/{user_id}")
def get_user(user_id: int):
return {"id": user_id}
# Dashboard → http://localhost:4242
Configuration
app.add_middleware(
ApiForgeMiddleware,
mode="local",
db_path=".apiforge.db",
dashboard_port=4242, # set to 0 to disable
flush_interval=60_000, # ms
env="production",
release="v1.4.0", # enables release regression detection
service="user-service",
sampling=1.0, # 0.0–1.0
ignore_paths=["/health", "/favicon.ico"],
)
What you get
- Latency percentiles — P50 / P90 / P99 per endpoint, updated every 60s
- Error rate by route — 2xx / 4xx / 5xx breakdown in real time
- API Health Score — a single 0–100 score summarizing your API's health
- Automatic insights — plain-language alerts with no configuration
- Dead endpoint detection — routes with no traffic in 21+ days
- Release impact tracking — before/after comparison on every deploy
Graceful shutdown
import signal
mw = None
@asynccontextmanager
async def lifespan(app):
yield
if mw:
mw.shutdown()
app = FastAPI(lifespan=lifespan)
mw = ApiForgeMiddleware.__new__(ApiForgeMiddleware)
app.add_middleware(ApiForgeMiddleware, mode="local")
Privacy by design
The middleware never reads request or response bodies, headers, cookies, or tokens. Route parameters are captured as patterns only (/users/{user_id} — never /users/42). In local mode, zero data leaves your machine.
Requirements
- Python ≥ 3.11
- Starlette ≥ 0.27 (FastAPI ≥ 0.110 includes this)
License
MIT — APIForge Organisation
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file apiforgepy-1.0.3.tar.gz.
File metadata
- Download URL: apiforgepy-1.0.3.tar.gz
- Upload date:
- Size: 38.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dda9607fe68d8f6e68735eeb422e3c379ee8b12c1da991106615b1e935eb723f
|
|
| MD5 |
23f8815813d7b06d999cceda1d2c4fa3
|
|
| BLAKE2b-256 |
d3f0b00c92c866f4470855de3925c684e88c47cf2ea81226a0a8af35cbd1471a
|
File details
Details for the file apiforgepy-1.0.3-py3-none-any.whl.
File metadata
- Download URL: apiforgepy-1.0.3-py3-none-any.whl
- Upload date:
- Size: 33.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3b16e49c56aa186364fb80172fb3d2e6f77a714568ef0b153903894044c6a65
|
|
| MD5 |
dcc24bea089f4bc233ad220c9b971ec1
|
|
| BLAKE2b-256 |
6c2d0c8ba1a18542a465930e112c419678a9e8599a808491707e63f9c385682d
|