Closed geuntabuwonofc closed 9 months ago
Hi @geuntabuwonofc, thanks for reaching out!
Unfortunately there is currently no way to check which source maps have been uploaded to Datadog. This is in our backlog, but no expected release date has been set as of now.
If that's ok with you, I'll set this issue as a feature request, and let you know when this will be ready to be released.
Hi @geuntabuwonofc, thanks for reaching out!
Unfortunately there is currently no way to check which source maps have been uploaded to Datadog. This is in our backlog, but no expected release date has been set as of now.
If that's ok with you, I'll set this issue as a feature request, and let you know when this will be ready to be released.
thank you for your kindly response 🙏 hope DataDog team prioritized this enhancement.
Hi @geuntabuwonofc,
You can now see your uploaded source maps and their associated tags on Datadog by going to “Integrations” > “Link Source Code” > “Explore RUM Debug Symbols” :)
Describe what happened I cannot verify if source maps success uploaded to datadog. does anyone know where is source maps stored on datadog dashboard ?
Steps to reproduce the issue:
npx react-native init ReactNativeDataDog --template react-native-template-typescript
Describe what you expected: I'm expecting stack trace on Error Tracking should be available to check. but I got nothing.
Additional context
package.json
android/build.gradle
andandroid/app/build.gradle
buildscript { ext { buildToolsVersion = "31.0.0" minSdkVersion = 21 compileSdkVersion = 31 targetSdkVersion = 31
}
allprojects { repositories { maven { // All of React Native (JS, Obj-C sources, Android binaries) is installed from npm url("$rootDir/../node_modules/react-native/android") } maven { // Android JSC is installed from npm url("$rootDir/../node_modules/jsc-android/dist") } mavenCentral { // We don't want to fetch react-native from Maven Central as there are // older versions over there. content { excludeGroup "com.facebook.react" } } google() maven { url 'https://www.jitpack.io' } } }