From 3a028db25039f3b94a67cf1c6e032860a32b4054 Mon Sep 17 00:00:00 2001 From: Daniel Szoke <7881302+szokeasaurusrex@users.noreply.github.com> Date: Wed, 3 Jul 2024 12:04:54 +0200 Subject: [PATCH] Note server http body size limit (#10561) * Note server http body size limit Clarify user confusion [here](https://github.com/getsentry/sentry-python/issues/3209#issuecomment-2202444443( * Update docs/platforms/python/configuration/options.mdx Co-authored-by: Ivana Kellyer --------- Co-authored-by: Ivana Kellyer --- docs/platforms/python/configuration/options.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/platforms/python/configuration/options.mdx b/docs/platforms/python/configuration/options.mdx index 8b396b2efb493..238c02532ee56 100644 --- a/docs/platforms/python/configuration/options.mdx +++ b/docs/platforms/python/configuration/options.mdx @@ -172,6 +172,8 @@ This parameter controls whether integrations should capture HTTP request bodies. - `medium`: Medium and small requests will be captured (typically 10KB). - `always`: The SDK will always capture the request body as long as Sentry can make sense of it. +Please note that the Sentry server [limits HTTP request body size](https://develop.sentry.dev/sdk/data-handling/#variable-size). The server always enforces its size limit, regardless of how you configure this option. +