Skip to content

Fix bad link and update broken redirects #11878

New issue

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

Merged
merged 2 commits into from
Nov 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ An alternative, or addition, to the username. Sentry is aware of email addresses
### `ip_address`

The user's IP address. If the user is unauthenticated, Sentry uses the IP address as a unique identifier for the user.
Serverside SDKs that instrument incoming requests will attempt to pull the IP address from the HTTP request data (`request.env.REMOTE_ADDR` field in JSON), if available. This requires you to set the `include.ip` option to `true` in the [`RequestData`](/platforms/javascript/guides/connect/configuration/integrations/default-integrations/#requestdata) integration.
Serverside SDKs that instrument incoming requests will attempt to pull the IP address from the HTTP request data (`request.env.REMOTE_ADDR` field in JSON), if available. This requires you to set the `include.ip` option to `true` in the [`RequestData`](/platforms/javascript/guides/connect/configuration/integrations/requestdata/) integration.

If the user's `ip_address` is set to `"{{auto}}"`, Sentry will infer the IP address from the connection between your app and Sentry's server.

Expand Down
22 changes: 22 additions & 0 deletions src/middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1589,6 +1589,28 @@ const USER_DOCS_REDIRECTS: Redirect[] = [
from: '/platforms/javascript/guides/:guide/tracing/instrumentation/opentelemetry/',
to: '/platforms/javascript/guides/:guide/opentelemetry/',
},
// START bandaid fix for #11870
{
from: '/platforms/java/performance/instrumentation/opentelemetry/',
to: '/platforms/java/tracing/instrumentation/opentelemetry/',
},
{
from: '/platforms/go/performance/instrumentation/opentelemetry/',
to: '/platforms/go/tracing/instrumentation/opentelemetry/',
},
{
from: '/platforms/javascript/guides/node/performance/instrumentation/opentelemetry/',
to: '/platforms/javascript/guides/node/opentelemetry/',
},
{
from: '/platforms/python/performance/instrumentation/opentelemetry/',
to: '/platforms/python/tracing/instrumentation/opentelemetry/',
},
{
from: '/platforms/ruby/performance/instrumentation/opentelemetry/',
to: '/platforms/ruby/tracing/instrumentation/opentelemetry/',
},
// END bandaid fix for #11870
{
from: '/learn/cli/configuration/',
to: '/cli/configuration/',
Expand Down
Loading