Skip to content

Commit c2f13a0

Browse files
committed
fix links
1 parent 72a453d commit c2f13a0

File tree

8 files changed

+12
-10
lines changed

8 files changed

+12
-10
lines changed

src/docs/product/accounts/quotas/manage-event-stream-guide.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ To learn more and see code samples, check out:
244244

245245
#### GlobalHandlers
246246

247-
This integration attaches global handlers to capture uncaught exceptions (`onerror`) and unhandled rejections (`onunhandledrejection`). Both handlers are enabled by default, but can be disabled through configuration. Learn more in [GlobalHandlers Integration](/platforms/javascript/configuration/integrations/default/#globalhandlers).
247+
This integration attaches global handlers to capture uncaught exceptions (`onerror`) and unhandled rejections (`onunhandledrejection`). Both handlers are enabled by default, but can be disabled through configuration. Learn more in [GlobalHandlers Integration](/platforms/javascript/configuration/integrations/globalhandlers/).
248248

249-
Check out additional configuration options with the [tryCatch](/platforms/javascript/configuration/integrations/default/#trycatch) and [ReportingObserver](/platforms/javascript/configuration/integrations/plugin/#reportingobserver) integrations.
249+
Check out additional configuration options with the [tryCatch](/platforms/javascript/configuration/integrations/trycatch/) and [ReportingObserver](/platforms/javascript/configuration/integrations/reportingobserver/) integrations.
250250

251251
### Other SDKs
252252

src/platform-includes/sourcemaps/legacy-troubleshooting/javascript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ To verify that the distribution has been set correctly in the SDK, open an issue
5656

5757
If you've uploaded source maps and they aren't applying to your code in an issue in Sentry, take a look at the JSON of the event and look for the `abs_path` to see exactly where we're attempting to resolve the file - for example, `http://localhost:8000/scripts/script.js` (`abs_path` will appear once for each frame in the stack trace - match this up with the file(s) that are not deminified.). A link to the JSON view can be found at the top of the issue page next to the date the event occurred. The uploaded artifact names must match these values.
5858

59-
If you have **dynamic values in your path** (for example, `https://www.site.com/{some_value}/scripts/script.js`), you may want to use the <PlatformSection notSupported={["node"]}><PlatformLink to="/configuration/integrations/plugin/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection><PlatformSection supported={["node"]}><PlatformLink to="/configuration/integrations/pluggable-integrations/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection> to change your `abs_path` values.
59+
If you have **dynamic values in your path** (for example, `https://www.site.com/{some_value}/scripts/script.js`), you may want to use the <PlatformSection notSupported={["node"]}><PlatformLink to="/configuration/integrations/rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection><PlatformSection supported={["node"]}><PlatformLink to="/configuration/integrations/pluggable-integrations/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection> to change your `abs_path` values.
6060

6161
### Using sentry-cli
6262

src/platform-includes/sourcemaps/legacy-uploading-methods/javascript.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,7 @@ To verify that the distribution has been set correctly in the SDK, open an issue
306306

307307
If you've uploaded source maps and they aren't applying to your code in an issue in Sentry, take a look at the JSON of the event and look for the `abs_path` to see exactly where we're attempting to resolve the file - for example, `http://localhost:8000/scripts/script.js` (`abs_path` will appear once for each frame in the stack trace - match this up with the file(s) that are not deminified.). A link to the JSON view can be found at the top of the issue page next to the date the event occurred. The uploaded artifact names must match these values.
308308

309-
If you have **dynamic values in your path** (for example, `https://www.site.com/{some_value}/scripts/script.js`), you may want to use the <PlatformSection notSupported={["node"]}><PlatformLink to="/configuration/integrations/plugin/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection><PlatformSection supported={["node"]}><PlatformLink to="/configuration/integrations/pluggable-integrations/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection> to change your `abs_path` values.
309+
If you have **dynamic values in your path** (for example, `https://www.site.com/{some_value}/scripts/script.js`), you may want to use the <PlatformSection notSupported={["node"]}><PlatformLink to="/configuration/integrations/rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection><PlatformSection supported={["node"]}><PlatformLink to="/configuration/integrations/pluggable-integrations/#rewriteframes">`rewriteFrames` integration</PlatformLink></PlatformSection> to change your `abs_path` values.
310310

311311
#### Using sentry-cli
312312

src/platforms/common/data-management/sensitive-data/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,6 @@ As a best practice you should always avoid logging confidential information. If
9999

100100
- Anonymize the confidential information within the log statements (for example, swap out email addresses -> for internal identifiers)
101101
- Use <PlatformIdentifier name="before-breadcrumb" /> to filter it out from breadcrumbs before it is attached
102-
- Disable logging breadcrumb integration (for example, as described [here](/platforms/javascript/configuration/integrations/default/#breadcrumbs))
102+
- Disable logging breadcrumb integration (for example, as described [here](/platforms/javascript/configuration/integrations/breadcrumbs/))
103103

104104
</PlatformSection>

src/platforms/javascript/common/configuration/integrations/index.mdx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
title: Integrations
33
sidebar_order: 30
44
description: "Learn more about how integrations extend the functionality of our SDK to cover common libraries and environments automatically."
5+
redirect_from:
6+
- /platforms/javascript/configuration/integrations/plugin/
7+
- /platforms/javascript/configuration/integrations/default/
58
---
69

710
Sentry provides a number of integrations which are designed to add automatic instrumentation to your application.
@@ -62,4 +65,4 @@ Sentry.init({
6265

6366
## Custom Integrations
6467

65-
You can also create custom integrations. [Read more about custom integrations here.](/custom)
68+
You can also create custom integrations. [Read more about custom integrations here.](./custom)

src/platforms/javascript/common/configuration/tree-shaking/index.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ For more information on custom webpack configurations in Next.js, see [Custom We
102102

103103
## Tree Shaking Default Integrations
104104

105-
By default, the Sentry SDK sets up a list of [default integrations](../integrations/default) that extend your
106-
SDK functionality. You can also add [additional](../integrations/plugin) or [custom](../integrations/custom)
105+
By default, the Sentry SDK sets up a list of [default integrations](../integrations) that extend your
106+
SDK functionality. You can also add [additional](../integrations) or [custom](../integrations/custom)
107107
integrations to your SDK configuration.
108108
If you don't want to include default integrations in your config, you can [disable](../options/#integration-configuration)
109109
them and add your custom array of integrations.

src/platforms/react-native/troubleshooting.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ Common fixes to this issue include:
9696
- Checking that source maps are correctly uploaded with the exact same `release` and `dist` values as the event. They **must match** for source maps to upload correctly.
9797
- If you set a custom `release` and `dist`, confirming that you manually uploaded the sourcemaps since our automatic source map upload script will not detect the custom values.
9898
- Make sure that the name of the bundle in the stack trace matches exactly with the name in the source map. For example, if your stack frames say `app:///index.bundle`, the artifacts must be named `index.bundle` and `index.bundle.map` respectively.
99-
- Checking that you are not disabling the [`RewriteFrames`](/platforms/javascript/configuration/integrations/plugin/#rewriteframes) default integration by overwriting it, filtering it out, or setting `defaultIntegrations: false`.
99+
- Checking that you are not disabling the [`RewriteFrames`](/platforms/javascript/configuration/integrations/rewriteframes) default integration by overwriting it, filtering it out, or setting `defaultIntegrations: false`.
100100

101101
[For more details, please read the guide on React Native source maps.](/platforms/react-native/sourcemaps)
102102

src/utils.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ type Page = {
5555
};
5656

5757
export const sortPages = (arr: any, extractor: (any) => Page = n => n): any[] => {
58-
console.log(arr);
5958
return arr.sort((a, b) => {
6059
a = extractor(a);
6160
b = extractor(b);

0 commit comments

Comments
 (0)