1. Packages
  2. Dynatrace
  3. API Docs
  4. DataPrivacy
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.DataPrivacy

Explore with Pulumi AI

Create DataPrivacy Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new DataPrivacy(name: string, args: DataPrivacyArgs, opts?: CustomResourceOptions);
@overload
def DataPrivacy(resource_name: str,
                args: DataPrivacyArgs,
                opts: Optional[ResourceOptions] = None)

@overload
def DataPrivacy(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                data_collection: Optional[DataPrivacyDataCollectionArgs] = None,
                do_not_track: Optional[DataPrivacyDoNotTrackArgs] = None,
                masking: Optional[DataPrivacyMaskingArgs] = None,
                user_tracking: Optional[DataPrivacyUserTrackingArgs] = None,
                application_id: Optional[str] = None)
func NewDataPrivacy(ctx *Context, name string, args DataPrivacyArgs, opts ...ResourceOption) (*DataPrivacy, error)
public DataPrivacy(string name, DataPrivacyArgs args, CustomResourceOptions? opts = null)
public DataPrivacy(String name, DataPrivacyArgs args)
public DataPrivacy(String name, DataPrivacyArgs args, CustomResourceOptions options)
type: dynatrace:DataPrivacy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DataPrivacyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DataPrivacyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DataPrivacyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DataPrivacyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DataPrivacyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

Constructor example

The following reference example uses placeholder values for all input properties.

var dataPrivacyResource = new Dynatrace.DataPrivacy("dataPrivacyResource", new()
{
    DataCollection = new Dynatrace.Inputs.DataPrivacyDataCollectionArgs
    {
        OptInModeEnabled = false,
    },
    DoNotTrack = new Dynatrace.Inputs.DataPrivacyDoNotTrackArgs
    {
        ComplyWithDoNotTrack = false,
        DoNotTrack = "string",
    },
    Masking = new Dynatrace.Inputs.DataPrivacyMaskingArgs
    {
        PersonalDataUriMaskingEnabled = false,
        UserActionMaskingEnabled = false,
    },
    UserTracking = new Dynatrace.Inputs.DataPrivacyUserTrackingArgs
    {
        PersistentCookieEnabled = false,
    },
    ApplicationId = "string",
});
Copy
example, err := dynatrace.NewDataPrivacy(ctx, "dataPrivacyResource", &dynatrace.DataPrivacyArgs{
	DataCollection: &dynatrace.DataPrivacyDataCollectionArgs{
		OptInModeEnabled: pulumi.Bool(false),
	},
	DoNotTrack: &dynatrace.DataPrivacyDoNotTrackArgs{
		ComplyWithDoNotTrack: pulumi.Bool(false),
		DoNotTrack:           pulumi.String("string"),
	},
	Masking: &dynatrace.DataPrivacyMaskingArgs{
		PersonalDataUriMaskingEnabled: pulumi.Bool(false),
		UserActionMaskingEnabled:      pulumi.Bool(false),
	},
	UserTracking: &dynatrace.DataPrivacyUserTrackingArgs{
		PersistentCookieEnabled: pulumi.Bool(false),
	},
	ApplicationId: pulumi.String("string"),
})
Copy
var dataPrivacyResource = new DataPrivacy("dataPrivacyResource", DataPrivacyArgs.builder()
    .dataCollection(DataPrivacyDataCollectionArgs.builder()
        .optInModeEnabled(false)
        .build())
    .doNotTrack(DataPrivacyDoNotTrackArgs.builder()
        .complyWithDoNotTrack(false)
        .doNotTrack("string")
        .build())
    .masking(DataPrivacyMaskingArgs.builder()
        .personalDataUriMaskingEnabled(false)
        .userActionMaskingEnabled(false)
        .build())
    .userTracking(DataPrivacyUserTrackingArgs.builder()
        .persistentCookieEnabled(false)
        .build())
    .applicationId("string")
    .build());
Copy
data_privacy_resource = dynatrace.DataPrivacy("dataPrivacyResource",
    data_collection={
        "opt_in_mode_enabled": False,
    },
    do_not_track={
        "comply_with_do_not_track": False,
        "do_not_track": "string",
    },
    masking={
        "personal_data_uri_masking_enabled": False,
        "user_action_masking_enabled": False,
    },
    user_tracking={
        "persistent_cookie_enabled": False,
    },
    application_id="string")
Copy
const dataPrivacyResource = new dynatrace.DataPrivacy("dataPrivacyResource", {
    dataCollection: {
        optInModeEnabled: false,
    },
    doNotTrack: {
        complyWithDoNotTrack: false,
        doNotTrack: "string",
    },
    masking: {
        personalDataUriMaskingEnabled: false,
        userActionMaskingEnabled: false,
    },
    userTracking: {
        persistentCookieEnabled: false,
    },
    applicationId: "string",
});
Copy
type: dynatrace:DataPrivacy
properties:
    applicationId: string
    dataCollection:
        optInModeEnabled: false
    doNotTrack:
        complyWithDoNotTrack: false
        doNotTrack: string
    masking:
        personalDataUriMaskingEnabled: false
        userActionMaskingEnabled: false
    userTracking:
        persistentCookieEnabled: false
Copy

DataPrivacy Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DataPrivacy resource accepts the following input properties:

DataCollection This property is required. Pulumiverse.Dynatrace.Inputs.DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
DoNotTrack This property is required. Pulumiverse.Dynatrace.Inputs.DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
Masking This property is required. Pulumiverse.Dynatrace.Inputs.DataPrivacyMasking
no documentation available
UserTracking This property is required. Pulumiverse.Dynatrace.Inputs.DataPrivacyUserTracking
User tracking
ApplicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
DataCollection This property is required. DataPrivacyDataCollectionArgs
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
DoNotTrack This property is required. DataPrivacyDoNotTrackArgs
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
Masking This property is required. DataPrivacyMaskingArgs
no documentation available
UserTracking This property is required. DataPrivacyUserTrackingArgs
User tracking
ApplicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection This property is required. DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack This property is required. DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking This property is required. DataPrivacyMasking
no documentation available
userTracking This property is required. DataPrivacyUserTracking
User tracking
applicationId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection This property is required. DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack This property is required. DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking This property is required. DataPrivacyMasking
no documentation available
userTracking This property is required. DataPrivacyUserTracking
User tracking
applicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
data_collection This property is required. DataPrivacyDataCollectionArgs
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
do_not_track This property is required. DataPrivacyDoNotTrackArgs
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking This property is required. DataPrivacyMaskingArgs
no documentation available
user_tracking This property is required. DataPrivacyUserTrackingArgs
User tracking
application_id Changes to this property will trigger replacement. str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection This property is required. Property Map
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack This property is required. Property Map
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking This property is required. Property Map
no documentation available
userTracking This property is required. Property Map
User tracking
applicationId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.

Outputs

All input properties are implicitly available as output properties. Additionally, the DataPrivacy resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing DataPrivacy Resource

Get an existing DataPrivacy resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

public static get(name: string, id: Input<ID>, state?: DataPrivacyState, opts?: CustomResourceOptions): DataPrivacy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        application_id: Optional[str] = None,
        data_collection: Optional[DataPrivacyDataCollectionArgs] = None,
        do_not_track: Optional[DataPrivacyDoNotTrackArgs] = None,
        masking: Optional[DataPrivacyMaskingArgs] = None,
        user_tracking: Optional[DataPrivacyUserTrackingArgs] = None) -> DataPrivacy
func GetDataPrivacy(ctx *Context, name string, id IDInput, state *DataPrivacyState, opts ...ResourceOption) (*DataPrivacy, error)
public static DataPrivacy Get(string name, Input<string> id, DataPrivacyState? state, CustomResourceOptions? opts = null)
public static DataPrivacy get(String name, Output<String> id, DataPrivacyState state, CustomResourceOptions options)
resources:  _:    type: dynatrace:DataPrivacy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
ApplicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
DataCollection Pulumiverse.Dynatrace.Inputs.DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
DoNotTrack Pulumiverse.Dynatrace.Inputs.DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
Masking Pulumiverse.Dynatrace.Inputs.DataPrivacyMasking
no documentation available
UserTracking Pulumiverse.Dynatrace.Inputs.DataPrivacyUserTracking
User tracking
ApplicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
DataCollection DataPrivacyDataCollectionArgs
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
DoNotTrack DataPrivacyDoNotTrackArgs
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
Masking DataPrivacyMaskingArgs
no documentation available
UserTracking DataPrivacyUserTrackingArgs
User tracking
applicationId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking DataPrivacyMasking
no documentation available
userTracking DataPrivacyUserTracking
User tracking
applicationId Changes to this property will trigger replacement. string
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection DataPrivacyDataCollection
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack DataPrivacyDoNotTrack
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking DataPrivacyMasking
no documentation available
userTracking DataPrivacyUserTracking
User tracking
application_id Changes to this property will trigger replacement. str
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
data_collection DataPrivacyDataCollectionArgs
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
do_not_track DataPrivacyDoNotTrackArgs
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking DataPrivacyMaskingArgs
no documentation available
user_tracking DataPrivacyUserTrackingArgs
User tracking
applicationId Changes to this property will trigger replacement. String
The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
dataCollection Property Map
To provide your end users with the ability to decide for themselves if their activities should be tracked to measure application performance and usage, enable opt-in mode.
doNotTrack Property Map
Most modern web browsers have a privacy feature called "Do Not Track" that individual users may have enabled on their devices. Customize how Dynatrace should behave when it encounters this setting.
masking Property Map
no documentation available
userTracking Property Map
User tracking

Supporting Types

DataPrivacyDataCollection
, DataPrivacyDataCollectionArgs

OptInModeEnabled This property is required. bool
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
OptInModeEnabled This property is required. bool
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
optInModeEnabled This property is required. Boolean
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
optInModeEnabled This property is required. boolean
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
opt_in_mode_enabled This property is required. bool
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.
optInModeEnabled This property is required. Boolean
With Data-collection and opt-in mode enabled, Real User Monitoring data isn't captured until dtrum.enable() is called for specific user sessions.

DataPrivacyDoNotTrack
, DataPrivacyDoNotTrackArgs

ComplyWithDoNotTrack This property is required. bool
Comply with "Do Not Track" browser settings
DoNotTrack string
Possible Values: Anonymous, Disable_rum
ComplyWithDoNotTrack This property is required. bool
Comply with "Do Not Track" browser settings
DoNotTrack string
Possible Values: Anonymous, Disable_rum
complyWithDoNotTrack This property is required. Boolean
Comply with "Do Not Track" browser settings
doNotTrack String
Possible Values: Anonymous, Disable_rum
complyWithDoNotTrack This property is required. boolean
Comply with "Do Not Track" browser settings
doNotTrack string
Possible Values: Anonymous, Disable_rum
comply_with_do_not_track This property is required. bool
Comply with "Do Not Track" browser settings
do_not_track str
Possible Values: Anonymous, Disable_rum
complyWithDoNotTrack This property is required. Boolean
Comply with "Do Not Track" browser settings
doNotTrack String
Possible Values: Anonymous, Disable_rum

DataPrivacyMasking
, DataPrivacyMaskingArgs

PersonalDataUriMaskingEnabled This property is required. bool
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
UserActionMaskingEnabled This property is required. bool

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
IpAddressMasking string
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

IpAddressMaskingEnabled bool

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

PersonalDataUriMaskingEnabled This property is required. bool
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
UserActionMaskingEnabled This property is required. bool

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
IpAddressMasking string
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

IpAddressMaskingEnabled bool

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

personalDataUriMaskingEnabled This property is required. Boolean
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
userActionMaskingEnabled This property is required. Boolean

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
ipAddressMasking String
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

ipAddressMaskingEnabled Boolean

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

personalDataUriMaskingEnabled This property is required. boolean
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
userActionMaskingEnabled This property is required. boolean

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
ipAddressMasking string
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

ipAddressMaskingEnabled boolean

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

personal_data_uri_masking_enabled This property is required. bool
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
user_action_masking_enabled This property is required. bool

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
ip_address_masking str
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

ip_address_masking_enabled bool

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

personalDataUriMaskingEnabled This property is required. Boolean
Dynatrace captures the URIs and request headers sent from desktop and mobile browsers. Dynatrace also captures full URIs on the server-side to enable detailed performance analysis of your applications. For complete details, visit Mask personal data in URIs.. URIs and request headers contain personal data. When this setting is enabled, Dynatrace automatically detects UUIDs, credit card numbers, email addresses, IP addresses, and other IDs and replaces those values with placeholders. The personal data is then masked in PurePath analysis, error analysis, user action naming for RUM, and elsewhere in Dynatrace.
userActionMaskingEnabled This property is required. Boolean

When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action. To learn more about masking user actions, visit Mask user actions.. When Dynatrace detects a user action that triggers a page load or an AJAX/XHR action, it constructs a name for the user action based on:

  • User event type (click on..., loading of page..., or keypress on...)
  • Title, caption, label, value, ID, className, or other available property of the related HTML element (for example, an image, button, checkbox, or text input field).

In most instances, the default approach to user-action naming works well, resulting in user-action names such as:

  • click on "Search" on page /search.html
  • keypress on "Feedback" on page /contact.html
  • touch on "Homescreen" of page /list.jsf

In rare circumstances, confidential data (for example, email addresses, usernames, or account numbers) can be unintentionally included in user action names because the confidential data itself is included in an HTML element label, attribute, or other value (for example, click on "my Account Number: 1231231"...). If such confidential data appears in your application's user action names, enable the Mask user action names setting. This setting replaces specific HTML element names and values with generic HTML element names. With user-action name masking enabled, the user action names listed above appear as:

  • click on INPUT on page /search.html
  • keypress on TEXTAREA on page /contact.html
  • touch on DIV of page /list.jsf
ipAddressMasking String
Possible Values: All, Public

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

ipAddressMaskingEnabled Boolean

Dynatrace captures the IP addresses of your end-users to determine the regions from which they access your application. To learn more, visit Mask IPs and GPS coordinates.. Dynatrace also captures GPS data from mobile apps that provide their users with the option of sharing geolocation data. On the server side, Dynatrace captures IP addresses to enable detailed troubleshooting for Dynatrace service calls.

Once enabled, IP address masking sets the last octet of monitored IPv4 addresses and the last 80 bits of IPv6 addresses to zeroes. GPS coordinates are rounded up to 1 decimal place (~10 km). This masking occurs in memory. Full IP addresses are never written to disk. Location lookups are made using anonymized IP addresses and GPS coordinates.

Deprecated: This property is not supported anymore by the Dynatrace REST API (since schema version 4)

DataPrivacyUserTracking
, DataPrivacyUserTrackingArgs

PersistentCookieEnabled This property is required. bool
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
PersistentCookieEnabled This property is required. bool
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
persistentCookieEnabled This property is required. Boolean
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
persistentCookieEnabled This property is required. boolean
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
persistent_cookie_enabled This property is required. bool
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.
persistentCookieEnabled This property is required. Boolean
When enabled, Dynatrace places a persistent cookie on all end-user devices to identify returning users.

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.