monitorit (awatch)
Self-hosted FastAPI monitoring with a built-in dashboard — traffic, errors, Apdex, request logs, consumers, uptime, and alerts.
No Grafana. No cloud account. No phone-home telemetry. Metrics stay on your machine in SQLite.
PyPI: monitorit · Import: from monitorit import awatch · Dashboard: /__awatch
from fastapi import FastAPI
from monitorit import awatch
app = FastAPI()
awatch.AWatch(app, env="dev") # → http://127.0.0.1:8000/__awatch
A lightweight, privacy-first alternative to hosted API analytics (e.g. Apitally) and a simpler path than Prometheus + Grafana for single-app FastAPI services.
Why monitorit?
| Need | monitorit |
|---|---|
| FastAPI request monitoring dashboard | Built-in at /__awatch |
| One-line setup | awatch.AWatch(app) |
| Self-hosted / on-prem | Local SQLite (default) |
| Request inspector | Opt-in headers, bodies, logs, cURL export |
| Consumer analytics | awatch.set_consumer(...) |
| Alerts | Email, Slack, Discord, webhook |
| Secret safety | Masking + path excludes by default |
Install
Python 3.10+ recommended.
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip install -U pip
pip install monitorit
From GitHub
pip install "git+https://github.com/Abdulwadood39/awatch.git"
Editable / contributing
git clone https://github.com/Abdulwadood39/awatch.git
cd awatch
pip install -e ".[dev]"
Verify
python -c "from monitorit import awatch; print(awatch.__version__, awatch.AWatch)"
Full details: docs/installation.md.
Quick start
- Attach awatch to your FastAPI app (snippet above).
- Run with uvicorn:
uvicorn your_module:app --reload
- Open the FastAPI monitoring dashboard: http://127.0.0.1:8000/__awatch.
Try the demos in this repo
pip install -e ".[dev]"
uvicorn examples.basic_app:app --reload
curl http://127.0.0.1:8000/
curl -X POST http://127.0.0.1:8000/items \
-H 'Content-Type: application/json' \
-d '{"name":"gadget","price":9.5}'
curl http://127.0.0.1:8000/boom
Production auth
env="prod" requires an auth_token (or auth_dependency):
import os
from monitorit import awatch
awatch.AWatch(
app,
env="prod",
auth_token=os.environ["AWATCH_TOKEN"],
allow_ui_config=False,
)
Unlock the UI with ?token=... or the in-browser Unlock dialog. More: docs/usage.md.
Features
- Traffic / Errors / Performance — per-endpoint stats, Apdex, timelines
- Request inspector — headers, bodies, correlated logs, exceptions, cURL export
- Opt-in body/header logging with default secret masking
- Consumers —
awatch.set_consumer()for individuals and groups - Traffic labels — categories defined in code
- 422 heatmaps — which Pydantic fields fail validation
- Do not track — exclude sensitive paths (code or Settings)
- Uptime — heartbeat + synthetic checks + external ping
- Alerts — triggers in code → email / Slack / Discord / webhook
- Settings UI — SMTP, excludes, uptime, Apdex (lockable)
- Auth gate for production dashboards
- Quiet access logs — dashboard polls do not spam uvicorn (default on)
- Retention controls — age + row-cap prune (default 7 days / 10k rows)
- Paginated request logs — lightweight list payloads; full detail on click
- Outbound HTTP inspector — linked httpx calls under each inbound request
- Postgres / MySQL — optional storage backends (
monitorit[postgres|mysql])
Documentation
| Doc | Topic |
|---|---|
| docs/ | Index |
| Installation | pip / venv / editable |
| Usage | Integrate & run |
| Configuration | Options, Settings lock, excludes |
| Dashboard | Tabs & filters |
| Consumers | awatch.set_consumer() |
| Categories | Traffic labels |
| Alerts | Triggers |
| Privacy | Masking & threat model |
| Publishing | PyPI releases |
Contributing
Contributions are welcome — bugs, docs, tests, dashboard UX, and features.
- Open an issue for ideas or bugs
- Fork, branch, and open a PR
- Run
pytestbefore submitting
Good first areas: documentation polish, more tests, Postgres storage, alert channels, dashboard UI.
Development
pip install -e ".[dev]"
pytest
uvicorn examples.basic_app:app --reload
Package layout: src/monitorit/awatch/ (core, capture, privacy, analytics, storage, health, triggers, api, dashboard).
Links
- GitHub: https://github.com/Abdulwadood39/awatch
- PyPI: https://pypi.org/project/monitorit/
- Issues: https://github.com/Abdulwadood39/awatch/issues
- Changelog: CHANGELOG.md
License
MIT © Abdulwadood
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 monitorit-0.2.0.tar.gz.
File metadata
- Download URL: monitorit-0.2.0.tar.gz
- Upload date:
- Size: 86.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8cf668b87d263df76212d6247f013a66cfbae344893dd6dabf27ca45021075a2
|
|
| MD5 |
2e71592ed251bfb55b29735a83c4f08e
|
|
| BLAKE2b-256 |
70a88539f7fe376ae61e9c04eba9149d7be41d7289391f8c24be8d3e55d80556
|
Provenance
The following attestation bundles were made for monitorit-0.2.0.tar.gz:
Publisher:
publish.yml on Abdulwadood39/awatch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
monitorit-0.2.0.tar.gz -
Subject digest:
8cf668b87d263df76212d6247f013a66cfbae344893dd6dabf27ca45021075a2 - Sigstore transparency entry: 2286169374
- Sigstore integration time:
-
Permalink:
Abdulwadood39/awatch@dea3629d810b95135d689d96b2c4e307f90350d9 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Abdulwadood39
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@dea3629d810b95135d689d96b2c4e307f90350d9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file monitorit-0.2.0-py3-none-any.whl.
File metadata
- Download URL: monitorit-0.2.0-py3-none-any.whl
- Upload date:
- Size: 108.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d5414a0c28ed00456f5f001a6187bb1483c3011c1f68687318e3d06bfe7e6e2a
|
|
| MD5 |
ef4d9b71ae320fc0e930f2c153902230
|
|
| BLAKE2b-256 |
07b5eb28565944f6ba8571e53338f542190bda33204308443e9b6d7a2708e6ff
|
Provenance
The following attestation bundles were made for monitorit-0.2.0-py3-none-any.whl:
Publisher:
publish.yml on Abdulwadood39/awatch
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
monitorit-0.2.0-py3-none-any.whl -
Subject digest:
d5414a0c28ed00456f5f001a6187bb1483c3011c1f68687318e3d06bfe7e6e2a - Sigstore transparency entry: 2286169510
- Sigstore integration time:
-
Permalink:
Abdulwadood39/awatch@dea3629d810b95135d689d96b2c4e307f90350d9 -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/Abdulwadood39
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@dea3629d810b95135d689d96b2c4e307f90350d9 -
Trigger Event:
push
-
Statement type: