Overview

Join the Beta!

Unity Monitoring is in public beta.

Datadog Real User Monitoring (RUM) enables you to visualize and analyze user journeys of your application’s individual users.

Setup

Datadog supports Unity Monitoring for iOS and Android for Unity LTS 2022+.

Datadog does not support Desktop (Windows, Mac, or Linux), console, or web deployments from Unity. If you have a game or application and want to use Datadog RUM to monitor its performance, create a ticket with Datadog support.

Installing

  1. Install External Dependency Manager for Unity (EDM4U). This can be done using Open UPM.

  2. Add the Datadog SDK Unity package from its Git URL at https://github.com/DataDog/unity-package. The package URL is https://github.com/DataDog/unity-package.git.

  3. Configure your project to use Gradle templates, and enable both Custom Main Template and Custom Gradle Properties Template.

  4. If you build and receive Duplicate class errors (common in Unity 2022.x), add the following block in the dependencies block in your mainTemplate.gradle:

    constraints {
         implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0") {
             because("kotlin-stdlib-jdk8 is now a part of kotlin-stdlib")
         }
    }
    

Specify application details in the UI

  1. In Datadog, navigate to Digital Experience > Add an Application.
  2. Choose Unity as the application type.
  3. Provide an application name to generate a unique Datadog application ID and client token.
  4. To disable automatic user data collection for either client IP or geolocation data, uncheck the boxes for those settings.

To ensure the safety of your data, you must use a client token. For more information about setting up a client token, see the Client Token documentation.

Specify Datadog settings in the Unity UI

After installing the Datadog Unity SDK, you need to set Datadog’s settings in the Unity UI. Navigate to your Project Settings and click on the Datadog section on the left hand side. You will see the following screen:

The following parameters are available:

ParameterRequired?Description
Enable DatadogNoWhether Datadog should be enabled. Disabling Datadog does not cause any of the Datadog APIs to fail, throw exceptions, or return null from any calls. It only stops the SDK from sending any information.
Output Symbol FilesNoThis option enables the output of symbol files for Datadog symbolication and file/line mapping features in Datadog Error Tracking.
Client TokenYesYour client token created for your application on Datadog’s website.
EnvNoThe name of the environment for your application. Defaults to "prod".
Datadog SiteYesThe site you send your data to.
Custom EndpointNoA custom endpoint or proxy to send Datadog data through. Mostly used for debugging.
Batch SizeYesSets the preferred size of batched data uploaded to Datadog. This value impacts the size and number of requests performed by the SDK (small batches mean more requests, but each request becomes smaller in size).
Upload FrequencyYesSets the preferred frequency of uploading data to Datadog.
Batch Processing LevelYesDefines the maximum amount of batches processed sequentially without a delay within one reading/uploading cycle.
Enable Crash ReportingNoEnables crash reporting in the RUM SDK.
Forward Unity LogsNoWhether to forward logs made from Unity’s Debug.Log calls to Datadog’s default logger.
Remote Log ThresholdYesThe level at which the default logger forwards logs to Datadog. Logs below this level are not sent.
Enable RUMNoWhether to enable sending data from Datadog’s Real User Monitoring APIs
Enable Automatic Scene TrackingNoWhether Datadog should automatically track new Views by interceping Unity’s SceneManager loading.
RUM Application IDYes (if RUM is enabled)The RUM Application ID created for your application on Datadog’s website.
Session Sample RateYesThe percentage of sessions to send to Datadog. Between 0 and 100.
Trace Sample RateYesThe percentage of distributed traces to send to Datadog. Between 0 and 100.
First Party HostsNoTo enable distributed tracing, you must specify which hosts are considered “first party” and have trace information injected.

Sample RUM sessions

You can control the data your application sends to Datadog RUM during instrumentation of the RUM Unity SDK. Specify the Session Sample Rate as a percentage between 0 and 100 in the Project Settings window in Unity.

Using Datadog

In order to be compliant with data protection and privacy policies, the Datadog Unity SDK requires setting a tracking consent value.

The trackingConsent setting can be one of the following values:

  • TrackingConsent.Pending: The Unity SDK starts collecting and batching the data but does not send it to Datadog. The Unity SDK waits for the new tracking consent value to decide what to do with the batched data.
  • TrackingConsent.Granted: The Unity SDK starts collecting the data and sends it to Datadog.
  • TrackingConsent.NotGranted: The Unity SDK does not collect any data. No logs are sent to Datadog.

Before Datadog sends any data, we need to confirm the user’s Tracking Consent. This 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);

Logging

You can intercept and send logs from Unity’s default debug logger by enabling the option and threshold in your projects settings.

Datadog maps the Unity levels to the following in Datadog’s Logging Levels:

Unity LogTypeDatadog Log Level
LogInfo
ErrorError
AssertCritical
WarningWarn
ExceptionCritical

You can access this default logger to add attributes or tags through the DatadogSdk.DefaultLogger property.

You can also create additional loggers for more fine grained control of thresholds, service names, logger names, or to supply additional attributes.

var logger = DatadogSdk.Instance.CreateLogger(new DatadogLoggingOptions()
{
    NetworkInfoEnabled = true,
    DatadogReportingThreshold = DdLogLevel.Debug,
});
logger.Info("Hello from Unity!");

logger.Debug("Hello with attributes", new()
{
    { "my_attribute", 122 },
    { "second_attribute", "with_value" },
    { "bool_attribute", true },
    {
        "nested_attribute", new Dictionary<string, object>()
        {
            { "internal_attribute", 1.234 },
        }
    },
});

The following parameters are available when creating a new logger:

ParameterDescriptionDefault
ServiceThe name of the service to associate with this logger.The application’s service name.
NameThe name of the logger.None
NetworkInfoEnabledWhether to bundle information about the user’s network state with each log.false
BundleWithRumEnabledWhether to bundle RUM session information with each log.true
RemoteSampleRateThe percentage of logs from this logger to send to Datadog, as a whole percent.100
RemoteLogThresholdThe threshold above which logs should be sent to Datadog.DdLogLevel.Debug

Real User Monitoring (RUM)

Manual Scene (View) Tracking

To manually track new Scenes (Views in Datadog), use the StartView and StopView methods:

public void Start()
{
    DatadogSdk.Instance.Rum.StartView("My View", new()
    {
        { "view_attribute": "active" }
    });
}

Starting a new view automatically ends the previous view.

Automatic Scene Tracking

You can also set Enable Automatic Scene Tracking in your Project Settings to enable automatically tracking active scenes. This uses Unity’s SceneManager.activeSceneChanged event to automatically start new scenes.

Web Requests / Resource Tracking

Datadog offers DatadogTrackedWebRequest, which is a UnityWebRequest wrapper intended to be a drop-in replacement for UnityWebRequest. DatadogTrackedWebRequest enables Datadog Distributed Tracing.

To enable Datadog Distributed Tracing, you must set the First Party Hosts in your project settings to a domain that supports distributed tracing. You can also modify the sampling rate for distributed tracing by setting the Tracing Sampling Rate.

First Party Hosts does not allow wildcards, but matches any subdomains for a given domain. For example, api.example.com matches staging.api.example.com and prod.api.example.com, but not news.example.com.