Skip to content

Commit

Permalink
sentry: Capture realm name in user information.
Browse files Browse the repository at this point in the history
  • Loading branch information
alexmv authored and timabbott committed Jul 27, 2020
1 parent af046df commit 1c8f4b9
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions zproject/sentry.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,25 @@
from typing import TYPE_CHECKING, Optional

import sentry_sdk
from sentry_sdk.integrations import Integration
from sentry_sdk.integrations.django import DjangoIntegration
from sentry_sdk.integrations.redis import RedisIntegration
from sentry_sdk.integrations.sqlalchemy import SqlalchemyIntegration
from sentry_sdk.utils import capture_internal_exceptions

from .config import PRODUCTION

if TYPE_CHECKING:
from sentry_sdk._types import Event, Hint

def add_context(event: 'Event', hint: 'Hint') -> 'Event':
from zerver.models import get_user_profile_by_id
with capture_internal_exceptions():
user_info = event.get("user", {})
if user_info.get("id"):
user_profile = get_user_profile_by_id(user_info["id"])
user_info["realm"] = user_profile.realm.string_id or 'root'
return event

def setup_sentry(dsn: Optional[str], *integrations: Integration) -> None:
if not dsn:
Expand All @@ -19,4 +33,5 @@ def setup_sentry(dsn: Optional[str], *integrations: Integration) -> None:
SqlalchemyIntegration(),
*integrations,
],
before_send=add_context,
)

0 comments on commit 1c8f4b9

Please sign in to comment.