Skip to content

Commit 05cf0be

Browse files
committed
Drop max dict items to 50 and expand docs
1 parent bb0f73a commit 05cf0be

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/developer/client/index.rst

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -556,12 +556,13 @@ Most arbitrary values in Sentry have their size restricted. This means any
556556
values that are sent as metadata (such as variables in a stacktrace) as well
557557
as things like extra data, or tags.
558558

559-
- Mappings of values (such as HTTP data, extra data, etc) are limitd to 100
559+
- Mappings of values (such as HTTP data, extra data, etc) are limitd to 50
560560
item pairs.
561-
- Unstructured data is limited to 512 characters.
562561
- Event IDs are limited to 32 characters.
563562
- Tag keys are limited to 32 characters.
564563
- Tag values are limited to 200 characters.
565564
- Culprits are limited to 200 characters.
565+
- Most contextual variables are limited to 512 characters.
566+
- Extra contextual data is limited to 2048 characters.
566567
- Messages are limited to 1024 characters.
567568
- Http data (the body) is limited to 1024 characters.

src/sentry/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,4 @@
165165
# For various attributes we dont limit the entire attribute on size, but the
166166
# individual item. In those cases we also want to limit the maximum number of
167167
# keys
168-
MAX_DICTIONARY_ITEMS = 100
168+
MAX_DICTIONARY_ITEMS = 50

0 commit comments

Comments
 (0)