Class: DatadogAPIClient::V1::SyntheticsBrowserTestRumSettings
- Inherits:
-
Object
- Object
- DatadogAPIClient::V1::SyntheticsBrowserTestRumSettings
- 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
-
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
-
#application_id ⇒ Object
RUM application ID used to collect RUM data for the browser test.
-
#client_token_id ⇒ Object
RUM application API key ID used to collect RUM data for the browser test.
-
#is_enabled ⇒ Object
readonly
Determines whether RUM data is collected during test runs.
Method Summary
Methods included from BaseGenericModel
Instance Attribute Details
#additional_properties ⇒ Object
Returns the value of attribute additional_properties.
43 44 45 |
# File 'lib/datadog_api_client/v1/models/synthetics_browser_test_rum_settings.rb', line 43 def additional_properties @additional_properties end |
#application_id ⇒ Object
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_id ⇒ Object
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_enabled ⇒ Object
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 |