- Verify the release and dist values of the event match the release and dist values of uploaded artifacts. Check for the release and dist tags in the event JSON
JSON View
Searching for the release in your artifacts-
- Verifying the frame.abs_path in the minified stack trace frame matches that of the path of the uploaded artifacts. frame.abs_path in example is http://localhost:3000/assets/index-5e0ef25e.js
Event View -
JSON View -
-
- Our ~ will take the place of any protocol and host. In this case will match with http://localhost:3000/
Example of a match -
Example of Non match due to missing assets/
folder in the path -
3. Verify your source file correctly points to your map files. Open up the source file and check to make sure the //# sourceMappingUrl
comment points correctly to the map file. The comment will look similar to //# sourceMappingURL=index-5e0ef25e.js.map
-
- We need both the source and the source map file. The stack trace matches with the source file, and the source file points us to the map file.
4. Verify that your source maps were uploaded before the events! Once an issue has been processed, it will not be processed again. There is no reprocessing of old events with newly uploaded maps.