Record User Information
Recording user information is available only in the Spring MVC integration.
Record user information from an HTTP request or by registering a Spring bean for custom user information capture.
Recording User Information From HTTP Request
To record the user's IP address and Principal#name
as the username, set the personal information flag to true
.
Copied
sentry.send-default-pii=true
Recording Custom User Information
To record custom user information, you can register a bean that implements SentryUserProvider
interface.
Copied
import org.springframework.stereotype.Component;
import io.sentry.core.protocol.User;
import io.sentry.spring.SentryUserProvider;
@Component
class CustomSentryUserProvider implements SentryUserProvider {
public User provideUser() {
User user = User();
// ... set user information
return user
}
}
- Package:
- maven:io.sentry:sentry-spring-boot-starter
- Version:
- 7.13.0
- Repository:
- https://github.com/getsentry/sentry-java