- 필수 기능
- 시작하기
- Glossary
- 표준 속성
- Guides
- Agent
- 통합
- 개방형텔레메트리
- 개발자
- Administrator's Guide
- API
- Datadog Mobile App
- CoScreen
- Cloudcraft
- 앱 내
- 서비스 관리
- 인프라스트럭처
- 애플리케이션 성능
- APM
- Continuous Profiler
- 스팬 시각화
- 데이터 스트림 모니터링
- 데이터 작업 모니터링
- 디지털 경험
- 소프트웨어 제공
- 보안
- AI Observability
- 로그 관리
- 관리
If you experience unexpected behavior with Datadog RUM, use this guide to resolve issues quickly. If you continue to have trouble, contact Datadog Support for further assistance.
If you’re able to run your app, but you are not seeing the data you expect on the Datadog site, try adding the following to your code as part of initialization:
DatadogSdk.Instance.SetSdkVerbosity(CoreLoggerLevel.Debug);
This causes the SDK to output additional information about what it’s doing and what errors it’s encountering, which may help you and Datadog Support narrow down your issue.
If you’re not seeing any data in Datadog:
Make sure you are running your app on an iOS or Android simulator, emulator, or device, and not from the editor.
Check that you have set the TrackingConsent
as part of your initialization. Tracking consent is set to TrackingConsent.Pending
during initialization,
and needs to be set to TrackingConsent.Granted
before Datadog sends any information.
DatadogSdk.Instance.SetTrackingConsent(TrackingConsent.Granted);