You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Which view & template was used to render this page -- I think this is captured in trace view so will not action unless I hear otherwise) We already capture this information
User info is missing (the logged in user in Django)
Cookies and User info is stripped by default with [send_default_pii](https://docs.sentry.io/platforms/python/configuration/options/#send-default-pii). We can enable this when Spotlight is enabled but then we risk sending this upstream to Sentry if there's a DSN set too. For now, we can limit this to DEBUG mode or lack of DSN for automatic turn-on behavior but looks like we need larger architectural changes for this such as post-scrubbing instead of limiting at the time of collection. (feat: Send PII to Spotlight when no DSN is set sentry-python#3804)
Transactions under /admin doesn't seem to be captured (intentional by the SDK?) -- We capture these
We don't seem to be utilizing profiling info in the UI which may help with the view, template, cache key etc related use cases above (Add support for Profiles #565)
This is a braindump of feedback I got from a friend who tried to use Spotlight with Django:
cache_spansin Django integration on SDK side for this (feat(spotlight): Auto enable cache_spans for Spotlight on DEBUG sentry-python#3791)Which view & template was used to render this page -- I think this is captured in trace view so will not action unless I hear otherwise)We already capture this informationDEBUGsetting orSENTRY_DEBUGin the SDK) (feat(spotlight): Add info logs when Sentry is enabled sentry-python#3735)[send_default_pii](https://docs.sentry.io/platforms/python/configuration/options/#send-default-pii). We can enable this when Spotlight is enabled but then we risk sending this upstream to Sentry if there's a DSN set too. For now, we can limit this toDEBUGmode or lack ofDSNfor automatic turn-on behavior but looks like we need larger architectural changes for this such as post-scrubbing instead of limiting at the time of collection. (feat: Send PII to Spotlight when no DSN is set sentry-python#3804)Transactions under-- We capture these/admindoesn't seem to be captured (intentional by the SDK?)Will be filing individual issues from these as I go.