Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/platforms/python/integrations/django/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ You can pass the following keyword arguments to `DjangoIntegration()`:

- `middleware_spans`:

Create spans and track performance of all middleware in your Django project. Set to `False` to disable.
Create spans and track performance of all middleware layers in your Django project. Set to `True` to enable.

The default is `False`.

Expand Down
6 changes: 6 additions & 0 deletions docs/platforms/python/integrations/fastapi/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -161,6 +161,12 @@ You can pass the following keyword arguments to `StarletteIntegration()` and `Fa

The default is `{*range(500, 600)}`, meaning that all 5xx status codes are reported to Sentry.

- `middleware_spans`:

Create spans and track performance of all middleware layers in your FastAPI project. Set to `True` to enable.

The default is `False`.

- `http_methods_to_capture`:

A tuple containing all the HTTP methods that should create a transaction in Sentry.
Expand Down
4 changes: 2 additions & 2 deletions docs/platforms/python/integrations/starlette/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,9 @@ You can pass the following keyword arguments to `StarletteIntegration()`:

- `middleware_spans`:

Create spans and track performance of all middleware in your Starlette project. Set to `False` to disable.
Create spans and track performance of all middleware layers in your Starlette project. Set to `True` to enable.

The default is `True`.
The default is `False`.

- `http_methods_to_capture`:

Expand Down
Loading