Sentry.setTag() doesn't report tags for events all the time

I tried:
Sentry.init({
dsn: SENTRY_DSN
});
Sentry.configureScope(scope => scope.setUser({ id: ‘’})); // clear automatically set user

after I get the userID
Sentry.setTag('loggedInUser', userID);

I see loggedInUser reported only for a few events, not all. Same is the case when I used:
Sentry.setUser("id", userID);

What am I doing wrong?

Which SDK is that?

Sentry’s React native SDK (@sentry/react-native@2.3.0)

Edit:
Tried -
Sentry.setUser({ id: userID });
Sentry.setTag(“loggedInUser”, userID);
And I saw that only some of the crash events come with a loggedInUser tag or a User.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.