published on Tuesday, Jun 9, 2026 by Pulumiverse
published on Tuesday, Jun 9, 2026 by Pulumiverse
Configuration of the application scope overlaps with dynatrace_mobile_application, but this resource in addition provides an option for an environment scope.
This resource requires the API token scopes Read settings (
settings.read) and Write settings (settings.write)
Dynatrace Documentation
Configure cost and traffic control for mobile applications - https://www.dynatrace.com/support/help/how-to-use-dynatrace/real-user-monitoring/setup-and-configuration/mobile-applications/configure-cost-and-traffic-control-mobile
Settings API - https://www.dynatrace.com/support/help/dynatrace-api/environment-api/settings (schemaId:
builtin:rum.mobile.enablement)
Export Example Usage
terraform-provider-dynatrace -export dynatrace.MobileAppEnablementdownloads all existing mobile application enablement and cost control configuration
The full documentation of the export feature is available here.
Create MobileAppEnablement Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MobileAppEnablement(name: string, args: MobileAppEnablementArgs, opts?: CustomResourceOptions);@overload
def MobileAppEnablement(resource_name: str,
args: MobileAppEnablementArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MobileAppEnablement(resource_name: str,
opts: Optional[ResourceOptions] = None,
rum: Optional[MobileAppEnablementRumArgs] = None,
session_replay: Optional[MobileAppEnablementSessionReplayArgs] = None,
application_id: Optional[str] = None,
experience_analytics: Optional[MobileAppEnablementExperienceAnalyticsArgs] = None)func NewMobileAppEnablement(ctx *Context, name string, args MobileAppEnablementArgs, opts ...ResourceOption) (*MobileAppEnablement, error)public MobileAppEnablement(string name, MobileAppEnablementArgs args, CustomResourceOptions? opts = null)
public MobileAppEnablement(String name, MobileAppEnablementArgs args)
public MobileAppEnablement(String name, MobileAppEnablementArgs args, CustomResourceOptions options)
type: dynatrace:MobileAppEnablement
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "dynatrace_mobileappenablement" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args MobileAppEnablementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args MobileAppEnablementArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args MobileAppEnablementArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MobileAppEnablementArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MobileAppEnablementArgs
- 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 mobileAppEnablementResource = new Dynatrace.MobileAppEnablement("mobileAppEnablementResource", new()
{
Rum = new Dynatrace.Inputs.MobileAppEnablementRumArgs
{
CostAndTrafficControl = 0,
Enabled = false,
EnabledOnGrail = false,
},
SessionReplay = new Dynatrace.Inputs.MobileAppEnablementSessionReplayArgs
{
OnCrash = false,
CostAndTrafficControl = 0,
FullSessionReplay = false,
},
ApplicationId = "string",
ExperienceAnalytics = new Dynatrace.Inputs.MobileAppEnablementExperienceAnalyticsArgs
{
Enabled = false,
},
});
example, err := dynatrace.NewMobileAppEnablement(ctx, "mobileAppEnablementResource", &dynatrace.MobileAppEnablementArgs{
Rum: &dynatrace.MobileAppEnablementRumArgs{
CostAndTrafficControl: pulumi.Int(0),
Enabled: pulumi.Bool(false),
EnabledOnGrail: pulumi.Bool(false),
},
SessionReplay: &dynatrace.MobileAppEnablementSessionReplayArgs{
OnCrash: pulumi.Bool(false),
CostAndTrafficControl: pulumi.Int(0),
FullSessionReplay: pulumi.Bool(false),
},
ApplicationId: pulumi.String("string"),
ExperienceAnalytics: &dynatrace.MobileAppEnablementExperienceAnalyticsArgs{
Enabled: pulumi.Bool(false),
},
})
resource "dynatrace_mobileappenablement" "mobileAppEnablementResource" {
rum = {
cost_and_traffic_control = 0
enabled = false
enabled_on_grail = false
}
session_replay = {
on_crash = false
cost_and_traffic_control = 0
full_session_replay = false
}
application_id = "string"
experience_analytics = {
enabled = false
}
}
var mobileAppEnablementResource = new MobileAppEnablement("mobileAppEnablementResource", MobileAppEnablementArgs.builder()
.rum(MobileAppEnablementRumArgs.builder()
.costAndTrafficControl(0)
.enabled(false)
.enabledOnGrail(false)
.build())
.sessionReplay(MobileAppEnablementSessionReplayArgs.builder()
.onCrash(false)
.costAndTrafficControl(0)
.fullSessionReplay(false)
.build())
.applicationId("string")
.experienceAnalytics(MobileAppEnablementExperienceAnalyticsArgs.builder()
.enabled(false)
.build())
.build());
mobile_app_enablement_resource = dynatrace.MobileAppEnablement("mobileAppEnablementResource",
rum={
"cost_and_traffic_control": 0,
"enabled": False,
"enabled_on_grail": False,
},
session_replay={
"on_crash": False,
"cost_and_traffic_control": 0,
"full_session_replay": False,
},
application_id="string",
experience_analytics={
"enabled": False,
})
const mobileAppEnablementResource = new dynatrace.MobileAppEnablement("mobileAppEnablementResource", {
rum: {
costAndTrafficControl: 0,
enabled: false,
enabledOnGrail: false,
},
sessionReplay: {
onCrash: false,
costAndTrafficControl: 0,
fullSessionReplay: false,
},
applicationId: "string",
experienceAnalytics: {
enabled: false,
},
});
type: dynatrace:MobileAppEnablement
properties:
applicationId: string
experienceAnalytics:
enabled: false
rum:
costAndTrafficControl: 0
enabled: false
enabledOnGrail: false
sessionReplay:
costAndTrafficControl: 0
fullSessionReplay: false
onCrash: false
MobileAppEnablement 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 MobileAppEnablement resource accepts the following input properties:
- Rum
Pulumiverse.
Dynatrace. Inputs. Mobile App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - Session
Replay Pulumiverse.Dynatrace. Inputs. Mobile App Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Experience
Analytics Pulumiverse.Dynatrace. Inputs. Mobile App Enablement Experience Analytics - User Interactions
- Rum
Mobile
App Enablement Rum Args - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - Session
Replay MobileApp Enablement Session Replay Args - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Experience
Analytics MobileApp Enablement Experience Analytics Args - User Interactions
- rum object
- (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session_
replay object - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - application_
id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience_
analytics object - User Interactions
- rum
Mobile
App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay MobileApp Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics MobileApp Enablement Experience Analytics - User Interactions
- rum
Mobile
App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay MobileApp Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics MobileApp Enablement Experience Analytics - User Interactions
- rum
Mobile
App Enablement Rum Args - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session_
replay MobileApp Enablement Session Replay Args - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - application_
id str - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience_
analytics MobileApp Enablement Experience Analytics Args - User Interactions
- rum Property Map
- (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay Property Map - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection. - application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics Property Map - User Interactions
Outputs
All input properties are implicitly available as output properties. Additionally, the MobileAppEnablement 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 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 MobileAppEnablement Resource
Get an existing MobileAppEnablement 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?: MobileAppEnablementState, opts?: CustomResourceOptions): MobileAppEnablement@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
application_id: Optional[str] = None,
experience_analytics: Optional[MobileAppEnablementExperienceAnalyticsArgs] = None,
rum: Optional[MobileAppEnablementRumArgs] = None,
session_replay: Optional[MobileAppEnablementSessionReplayArgs] = None) -> MobileAppEnablementfunc GetMobileAppEnablement(ctx *Context, name string, id IDInput, state *MobileAppEnablementState, opts ...ResourceOption) (*MobileAppEnablement, error)public static MobileAppEnablement Get(string name, Input<string> id, MobileAppEnablementState? state, CustomResourceOptions? opts = null)public static MobileAppEnablement get(String name, Output<String> id, MobileAppEnablementState state, CustomResourceOptions options)resources: _: type: dynatrace:MobileAppEnablement get: id: ${id}import {
to = dynatrace_mobileappenablement.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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
- The unique name of the resulting resource.
- id
- 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.
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Experience
Analytics Pulumiverse.Dynatrace. Inputs. Mobile App Enablement Experience Analytics - User Interactions
- Rum
Pulumiverse.
Dynatrace. Inputs. Mobile App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - Session
Replay Pulumiverse.Dynatrace. Inputs. Mobile App Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- Application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- Experience
Analytics MobileApp Enablement Experience Analytics Args - User Interactions
- Rum
Mobile
App Enablement Rum Args - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - Session
Replay MobileApp Enablement Session Replay Args - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- application_
id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience_
analytics object - User Interactions
- rum object
- (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session_
replay object - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics MobileApp Enablement Experience Analytics - User Interactions
- rum
Mobile
App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay MobileApp Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- application
Id string - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics MobileApp Enablement Experience Analytics - User Interactions
- rum
Mobile
App Enablement Rum - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay MobileApp Enablement Session Replay - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- application_
id str - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience_
analytics MobileApp Enablement Experience Analytics Args - User Interactions
- rum
Mobile
App Enablement Rum Args - (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session_
replay MobileApp Enablement Session Replay Args - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
- application
Id String - The scope of this settings. If the settings should cover the whole environment, just don't specify any scope.
- experience
Analytics Property Map - User Interactions
- rum Property Map
- (Field has overlap with
dynatrace.MobileApplication) Capture and analyze all user actions within your application. Enable Real User Monitoring (RUM) to monitor and improve your application's performance, identify errors, and gain insight into your user's behavior and experience. - session
Replay Property Map - (Field has overlap with
dynatrace.MobileApplication) Session Replay captures all user interactions within your application and replays them in a movie-like experience while providing best-in-class security and data protection.
Supporting Types
MobileAppEnablementExperienceAnalytics, MobileAppEnablementExperienceAnalyticsArgs
- Enabled bool
- This setting is enabled (
true) or disabled (false)
- Enabled bool
- This setting is enabled (
true) or disabled (false)
- enabled bool
- This setting is enabled (
true) or disabled (false)
- enabled Boolean
- This setting is enabled (
true) or disabled (false)
- enabled boolean
- This setting is enabled (
true) or disabled (false)
- enabled bool
- This setting is enabled (
true) or disabled (false)
- enabled Boolean
- This setting is enabled (
true) or disabled (false)
MobileAppEnablementRum, MobileAppEnablementRumArgs
- Cost
And intTraffic Control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Enabled
On boolGrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- Cost
And intTraffic Control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- Enabled bool
- This setting is enabled (
true) or disabled (false) - Enabled
On boolGrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- cost_
and_ numbertraffic_ control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- enabled bool
- This setting is enabled (
true) or disabled (false) - enabled_
on_ boolgrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- cost
And IntegerTraffic Control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - enabled
On BooleanGrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- cost
And numberTraffic Control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- enabled boolean
- This setting is enabled (
true) or disabled (false) - enabled
On booleanGrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- cost_
and_ inttraffic_ control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- enabled bool
- This setting is enabled (
true) or disabled (false) - enabled_
on_ boolgrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
- cost
And NumberTraffic Control - Percentage of user sessions captured and analyzed. By default, Dynatrace captures all user actions and user sessions for analysis. This approach ensures complete insight into your application’s performance and customer experience. You can optionally reduce the granularity of user-action and user-session analysis by capturing a lower percentage of user sessions. While this approach can reduce monitoring costs, it also results in lower visibility into how your customers are using your applications. For example, a setting of 10% results in Dynatrace analyzing only every tenth user session.
- enabled Boolean
- This setting is enabled (
true) or disabled (false) - enabled
On BooleanGrail - Please be aware that only mobile agents with version 8.309 or higher can ingest Grail events
MobileAppEnablementSessionReplay, MobileAppEnablementSessionReplayArgs
- On
Crash bool - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- Cost
And intTraffic Control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- Full
Session boolReplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- On
Crash bool - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- Cost
And intTraffic Control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- Full
Session boolReplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- on_
crash bool - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- cost_
and_ numbertraffic_ control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- full_
session_ boolreplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- on
Crash Boolean - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- cost
And IntegerTraffic Control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- full
Session BooleanReplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- on
Crash boolean - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- cost
And numberTraffic Control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- full
Session booleanReplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- on_
crash bool - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- cost_
and_ inttraffic_ control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- full_
session_ boolreplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- on
Crash Boolean - Capture screen recordings that replay the user actions preceding all detected crashes. Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
- cost
And NumberTraffic Control - Percentage of user sessions recorded with Session Replay. For example, if you have 50% for RUM and 50% for Session Replay, it results in 25% of sessions recorded with Session Replay.
- full
Session BooleanReplay - Before enabling, Dynatrace checks your system against the prerequisites for Session Replay.
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatraceTerraform Provider.
published on Tuesday, Jun 9, 2026 by Pulumiverse