We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
sentry
sentry-actix
SENTRY_DSN
let _guard = sentry::init(sentry::ClientOptions { release: sentry::release_name!(), debug: true, attach_stacktrace: true, send_default_pii: true, traces_sample_rate: 1.0, auto_session_tracking: true, session_mode: sentry::SessionMode::Request, ..Default::default() });
.wrap(sentry_actix::Sentry::with_transaction())
On the server, I should be able to see the remote IP address from which the request was made in the REMOTE_ADDR field.
The REMOTE_ADDR field is missing in the event details on the server.
If I use sentry::capture_error at step 4, the REMOTE_ADDR field can be seen on the server.
The text was updated successfully, but these errors were encountered:
follow getsentry#439 for actix-web. fix getsentry#680
890def3
1d3212a
No branches or pull requests
Environment
sentry
: 0.34.0sentry-actix
: 0.34.0Steps to Reproduce
sentry
andsentry-actix
cratesSENTRY_DSN
environment variable.Expected Result
On the server, I should be able to see the remote IP address from which the request was made in the REMOTE_ADDR field.
Actual Result
The REMOTE_ADDR field is missing in the event details on the server.
Note
If I use sentry::capture_error at step 4, the REMOTE_ADDR field can be seen on the server.
The text was updated successfully, but these errors were encountered: