diff --git a/docs/platforms/react-native/enriching-events/identify-user/index.mdx b/docs/platforms/react-native/enriching-events/identify-user/index.mdx index ce906381fd266..0e7e670d9d2f8 100644 --- a/docs/platforms/react-native/enriching-events/identify-user/index.mdx +++ b/docs/platforms/react-native/enriching-events/identify-user/index.mdx @@ -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. diff --git a/src/middleware.ts b/src/middleware.ts index baa1b89668b4f..bb6162ececf97 100644 --- a/src/middleware.ts +++ b/src/middleware.ts @@ -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/',