I'm using the Python SDK, and am trying to add some metadata using the following:
my_list = list(range(11))
with sentry_sdk.configure_scope() as scope:
scope.set_extra("project_stats", {"list": my_list, "length": len(my_list)})
...
sentry_sdk.flush()
The list shows up in the Sentry dashboard, but it is truncated!
I can't find any configuration/documentation about this, please help! 🙂