이 페이지는 아직 영어로 제공되지 않습니다. 번역 작업 중입니다.
현재 번역 프로젝트에 대한 질문이나 피드백이 있으신 경우 언제든지 연락주시기 바랍니다.

Overview

If you experience unexpected behavior with Datadog RUM, use this guide to resolve those issues. If you continue to have trouble, contact Datadog Support for further assistance.

Set sdkVerbosity for easier debugging

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.

The SDK is not sending data

Datadog does not support sending data from the Unity Editor, only from iOS and Android simulators, emulators, and devices.

If you’re not seeing any data in Datadog:

  1. Make sure you are running your app on an iOS or Android simulator, emulator, or device, and not from the editor.

  2. 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);

Further Reading

PREVIEWING: aliciascott/DOCS-9725-Cloudcraft