Open
Description
#20 caps all attributes at 512 characters to prevent us from going over quotas and losing events.
I found the specific quotas for everything here: https://github.com/getsentry/sentry/blob/master/src/sentry/conf/server.py#L1112
We should:
- Enforce quotas on max list and dictionary length
- Allow longer strings in the special cases where they're allowed (for examples, "message" allows up to 8K characters).
Ideally this would be configurable.