You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: platform-includes/sourcemaps/legacy-troubleshooting/javascript.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -239,7 +239,11 @@ Sometimes build scripts and plugins produce pre-compressed minified files (for e
239
239
240
240
If you're <PlatformLinkto="/sourcemaps/uploading/hosting-publicly/">hosting your source maps publicly</PlatformLink>, make sure you have the "Enable JavaScript source fetching" option activated under **[Settings] > Projects > Select your project > General Settings**.
241
241
242
-
## Verify workers are sharing the same volume as web (if running self-hosted Sentry via Docker)
242
+
## (Self-Hosted Sentry) Verify the `symbolicator` service is operating normally
243
+
244
+
If you're running a self-hosted version of Sentry, you can verify that the `symbolicator` service/container is operating normally by checking the container's logs.
245
+
246
+
## (Self-Hosted Sentry via Docker) Verify workers are sharing the same volume as web
243
247
244
248
Sentry does source map calculation in its workers. This means the workers need access to the files uploaded through the front end. Double check that the cron workers and web workers can read/write files from the same disk.
Copy file name to clipboardExpand all lines: platform-includes/sourcemaps/legacy-uploading-methods/javascript.mdx
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -73,16 +73,15 @@ export default defineConfig({
73
73
],
74
74
});
75
75
```
76
-
</PlatformSection>
77
76
77
+
</PlatformSection>
78
78
79
79
## Uploading using Sentry Webpack Plugin Version 1.x
80
80
81
81
Assuming you have the `@sentry/webpack` package installed on version `1.x`, you can learn more on how to configure the plugin in the [Sentry webpack plugin v1 documentation](https://github.com/getsentry/sentry-webpack-plugin#readme).
The Sentry webpack plugin will automatically inject a release value into the SDK so you must either omit the `release` option from `Sentry.init` or make sure `Sentry.init`'s `release` option matches the plugin's `release` option exactly:
113
112
114
-
115
113
```javascript
116
114
Sentry.init({
117
115
dsn:"___PUBLIC_DSN___",
@@ -136,7 +134,6 @@ This applies when using the following packages on version `2.x` and above:
136
134
137
135
Example of using the `release.uploadLegacySourcemaps` option:
The Sentry bundler plugins will automatically inject a release value into the SDK so you must either omit the `release` option from `Sentry.init` or make sure `Sentry.init`'s `release` option matches the plugin's `release.name` option exactly:
253
250
254
-
255
251
```javascript
256
252
Sentry.init({
257
253
dsn:"___PUBLIC_DSN___",
@@ -506,7 +502,11 @@ If you are using `sentry-cli` to upload your artifacts, starting with version `2
506
502
507
503
Sometimes build scripts and plugins produce pre-compressed minified files (for example, webpack's [compression plugin](https://github.com/webpack/compression-webpack-plugin)). In these cases, you'll need to disable such plugins and perform the compression **after** the generated source maps/source files have been uploaded to Sentry.
508
504
509
-
### Verify workers are sharing the same volume as web (if running self-hosted Sentry via Docker)
505
+
### (Self-Hosted Sentry) Verify the `symbolicator` service is operating normally
506
+
507
+
If you're running a self-hosted version of Sentry, you can verify that the `symbolicator` service/container is operating normally by checking the container's logs.
508
+
509
+
### (Self-Hosted Sentry via Docker) Verify workers are sharing the same volume as web
510
510
511
511
Sentry does source map calculation in its workers. This means the workers need access to the files uploaded through the front end. Double check that the cron workers and web workers can read/write files from the same disk.
Copy file name to clipboardExpand all lines: platform-includes/sourcemaps/troubleshooting/javascript.mdx
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -166,10 +166,14 @@ Sometimes build scripts and plugins produce pre-compressed minified files (for e
166
166
### Verify Source Fetching is Enabled
167
167
168
168
If you're <PlatformLinkto="/sourcemaps/uploading/hosting-publicly/">hosting your source maps publicly</PlatformLink>, make sure you have the "Enable JavaScript source fetching" option activated under **[Settings] > Projects > Select your project > General Settings**.
169
+
169
170
</PlatformSection>
170
171
172
+
### (Self-Hosted Sentry) Verify the `symbolicator` service is operating normally
173
+
174
+
If you're running a self-hosted version of Sentry, you can verify that the `symbolicator` service/container is operating normally by checking the container's logs.
171
175
172
-
### Verify Workers Are Sharing Same Volume as Web (if running self-hosted Sentry via Docker)
176
+
### (Self-Hosted Sentry via Docker) Verify workers are sharing the same volume as web
173
177
174
178
Sentry does source map calculation in its workers. This means the workers need access to the files uploaded through the front end. Double check that the cron workers and web workers can read/write files from the same disk.
0 commit comments