Class: DatadogAPIClient::V1::SyntheticsBrowserTestRumSettings

Inherits:
Object
  • Object
show all
Includes:
BaseGenericModel
Defined in:
lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb

Overview

The RUM data collection settings for the Synthetic browser test. Note: There are 3 ways to format RUM settings:

{ isEnabled: false } RUM data is not collected.

{ isEnabled: true } RUM data is collected from the Synthetic test's default application.

{ isEnabled: true, applicationId: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", clientTokenId: 12345 } RUM data is collected using the specified application.

Instance Attribute Summary collapse

Method Summary

Methods included from BaseGenericModel

included

Instance Attribute Details

#application_idObject

RUM application ID used to collect RUM data for the browser test.



35
36
37
# File 'lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb', line 35

def application_id
  @application_id
end

#client_token_idObject

RUM application API key ID used to collect RUM data for the browser test.



38
39
40
# File 'lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb', line 38

def client_token_id
  @client_token_id
end

#is_enabledObject

Determines whether RUM data is collected during test runs.



41
42
43
# File 'lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb', line 41

def is_enabled
  @is_enabled
end