Skip to main content

Sentry integration for HawkAPI — plugin + middleware

Project description

hawkapi-sentry

PyPI Python License CI Downloads

Sentry integration for HawkAPI — a plugin that initialises the Sentry SDK on startup and captures unhandled exceptions, plus a middleware that creates a performance transaction per request.


Quickstart

pip install hawkapi-sentry
from hawkapi import HawkAPI
from hawkapi_sentry import SentryPlugin, SentryMiddleware

app = HawkAPI()

app.add_plugin(
    SentryPlugin(
        dsn="https://key@sentry.io/123",
        environment="production",
        traces_sample_rate=0.1,
    )
)
app.add_middleware(SentryMiddleware)

That's it. Every unhandled exception is captured with full request context; every request gets a Sentry performance transaction.


SentryPlugin parameter reference

Parameter Type Default Description
dsn str | None None Sentry DSN. Empty/None = no-op mode (safe for local dev).
environment str "production" Sentry environment tag.
release str | None None Release string. None = not set.
traces_sample_rate float 0.0 Fraction of transactions to sample for performance monitoring.
profiles_sample_rate float 0.0 Fraction of sampled transactions to profile.
include_user_data bool False When True, attach request.state.user dict to Sentry events.
user_getter Callable[[Request], dict] | None None Custom callable to extract user data from the request. Takes priority over include_user_data.
before_send Callable | None None Passed directly to sentry_sdk.init. Return None to drop an event.
tags dict[str, str] | None None Global tags applied to every captured event.
ignore_status_codes tuple[int, ...] (404, 401, 403) HTTP status codes for which exceptions are not sent to Sentry.

Migration from sentry-sdk[fastapi]

FastAPI / starlette-sentry hawkapi-sentry
sentry_sdk.init(integrations=[StarletteIntegration(), FastApiIntegration()]) app.add_plugin(SentryPlugin(dsn=...))
SentryAsgiMiddleware(app) app.add_middleware(SentryMiddleware)
before_send kwarg to sentry_sdk.init SentryPlugin(before_send=...)
Manual with sentry_sdk.push_scope() as scope: scope.set_user(...) SentryPlugin(user_getter=lambda req: {...})

The main difference: HawkAPI plugins own the SDK lifecycle, so you never call sentry_sdk.init() yourself — SentryPlugin.on_startup() does it.


Development

# Clone and install in editable mode with dev extras
git clone https://github.com/ashimov/hawkapi-sentry.git
cd hawkapi-sentry
uv sync --extra dev

# Run tests
uv run pytest tests/ -q

# Lint
uv run ruff check .
uv run ruff format .

# Type-check
uv run pyright src/

License

MIT — Copyright (c) 2026 HawkAPI Contributors.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

hawkapi_sentry-0.1.0.tar.gz (21.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hawkapi_sentry-0.1.0-py3-none-any.whl (7.3 kB view details)

Uploaded Python 3

File details

Details for the file hawkapi_sentry-0.1.0.tar.gz.

File metadata

  • Download URL: hawkapi_sentry-0.1.0.tar.gz
  • Upload date:
  • Size: 21.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hawkapi_sentry-0.1.0.tar.gz
Algorithm Hash digest
SHA256 e89b9291f1794a0eadbf796570ef02c89f549859b0bd023f09ab0ff0afe07586
MD5 4165c333b1bebba142fc64787030c155
BLAKE2b-256 5fcf6b80c54b838585f153b493c1b8a291eb05c6f7bfe22d4edd4ffcb2f3fd29

See more details on using hashes here.

Provenance

The following attestation bundles were made for hawkapi_sentry-0.1.0.tar.gz:

Publisher: release.yml on ashimov/hawkapi-sentry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file hawkapi_sentry-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: hawkapi_sentry-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 7.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for hawkapi_sentry-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 16b482870c49df024f1f7cd531067f487fd42d43ceb9dc409387f1be56356a2c
MD5 310f9d4e5131f60e827363d0abe2b4e9
BLAKE2b-256 67725392ac596f674fd2d797b3f7f86820356b871da93e3b26ab567bbac59db0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hawkapi_sentry-0.1.0-py3-none-any.whl:

Publisher: release.yml on ashimov/hawkapi-sentry

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page