Sentry Configurar el alcance

Sentry.configureScope(function(scope) {
  scope.setTag("my-tag", "my value");
  scope.setUser({
    id: 42,
    email: "[email protected]",
  });
});
Delightful Donkey