dynatrace.CustomAppAnomalies
Explore with Pulumi AI
Create CustomAppAnomalies Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CustomAppAnomalies(name: string, args: CustomAppAnomaliesArgs, opts?: CustomResourceOptions);
@overload
def CustomAppAnomalies(resource_name: str,
args: CustomAppAnomaliesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CustomAppAnomalies(resource_name: str,
opts: Optional[ResourceOptions] = None,
error_rate_increase: Optional[CustomAppAnomaliesErrorRateIncreaseArgs] = None,
slow_user_actions: Optional[CustomAppAnomaliesSlowUserActionsArgs] = None,
unexpected_high_load: Optional[CustomAppAnomaliesUnexpectedHighLoadArgs] = None,
unexpected_low_load: Optional[CustomAppAnomaliesUnexpectedLowLoadArgs] = None,
scope: Optional[str] = None)
func NewCustomAppAnomalies(ctx *Context, name string, args CustomAppAnomaliesArgs, opts ...ResourceOption) (*CustomAppAnomalies, error)
public CustomAppAnomalies(string name, CustomAppAnomaliesArgs args, CustomResourceOptions? opts = null)
public CustomAppAnomalies(String name, CustomAppAnomaliesArgs args)
public CustomAppAnomalies(String name, CustomAppAnomaliesArgs args, CustomResourceOptions options)
type: dynatrace:CustomAppAnomalies
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. CustomAppAnomaliesArgs - 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. CustomAppAnomaliesArgs - 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. CustomAppAnomaliesArgs - 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. CustomAppAnomaliesArgs - 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. CustomAppAnomaliesArgs - 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 customAppAnomaliesResource = new Dynatrace.CustomAppAnomalies("customAppAnomaliesResource", new()
{
ErrorRateIncrease = new Dynatrace.Inputs.CustomAppAnomaliesErrorRateIncreaseArgs
{
Enabled = false,
DetectionMode = "string",
ErrorRateIncreaseAuto = new Dynatrace.Inputs.CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseAutoArgs
{
ThresholdAbsolute = 0,
ThresholdRelative = 0,
},
ErrorRateIncreaseFixed = new Dynatrace.Inputs.CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseFixedArgs
{
Sensitivity = "string",
ThresholdAbsolute = 0,
},
},
SlowUserActions = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsArgs
{
Enabled = false,
DetectionMode = "string",
SlowUserActionsAuto = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoArgs
{
DurationAvoidOveralerting = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationAvoidOveralertingArgs
{
MinActionRate = 0,
},
DurationThresholdAll = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdAllArgs
{
DurationThreshold = 0,
SlowdownPercentage = 0,
},
DurationThresholdSlowest = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdSlowestArgs
{
DurationThreshold = 0,
SlowdownPercentage = 0,
},
},
SlowUserActionsFixed = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedArgs
{
DurationAvoidOveralerting = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationAvoidOveralertingArgs
{
MinActionRate = 0,
},
DurationThresholdAllFixed = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdAllFixedArgs
{
DurationThreshold = 0,
},
DurationThresholdSlowest = new Dynatrace.Inputs.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdSlowestArgs
{
DurationThreshold = 0,
},
Sensitivity = "string",
},
},
UnexpectedHighLoad = new Dynatrace.Inputs.CustomAppAnomaliesUnexpectedHighLoadArgs
{
Enabled = false,
ThresholdPercentage = 0,
},
UnexpectedLowLoad = new Dynatrace.Inputs.CustomAppAnomaliesUnexpectedLowLoadArgs
{
Enabled = false,
ThresholdPercentage = 0,
},
Scope = "string",
});
example, err := dynatrace.NewCustomAppAnomalies(ctx, "customAppAnomaliesResource", &dynatrace.CustomAppAnomaliesArgs{
ErrorRateIncrease: &dynatrace.CustomAppAnomaliesErrorRateIncreaseArgs{
Enabled: pulumi.Bool(false),
DetectionMode: pulumi.String("string"),
ErrorRateIncreaseAuto: &dynatrace.CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseAutoArgs{
ThresholdAbsolute: pulumi.Float64(0),
ThresholdRelative: pulumi.Float64(0),
},
ErrorRateIncreaseFixed: &dynatrace.CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseFixedArgs{
Sensitivity: pulumi.String("string"),
ThresholdAbsolute: pulumi.Float64(0),
},
},
SlowUserActions: &dynatrace.CustomAppAnomaliesSlowUserActionsArgs{
Enabled: pulumi.Bool(false),
DetectionMode: pulumi.String("string"),
SlowUserActionsAuto: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoArgs{
DurationAvoidOveralerting: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationAvoidOveralertingArgs{
MinActionRate: pulumi.Int(0),
},
DurationThresholdAll: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdAllArgs{
DurationThreshold: pulumi.Float64(0),
SlowdownPercentage: pulumi.Float64(0),
},
DurationThresholdSlowest: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdSlowestArgs{
DurationThreshold: pulumi.Float64(0),
SlowdownPercentage: pulumi.Float64(0),
},
},
SlowUserActionsFixed: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedArgs{
DurationAvoidOveralerting: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationAvoidOveralertingArgs{
MinActionRate: pulumi.Int(0),
},
DurationThresholdAllFixed: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdAllFixedArgs{
DurationThreshold: pulumi.Float64(0),
},
DurationThresholdSlowest: &dynatrace.CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdSlowestArgs{
DurationThreshold: pulumi.Float64(0),
},
Sensitivity: pulumi.String("string"),
},
},
UnexpectedHighLoad: &dynatrace.CustomAppAnomaliesUnexpectedHighLoadArgs{
Enabled: pulumi.Bool(false),
ThresholdPercentage: pulumi.Float64(0),
},
UnexpectedLowLoad: &dynatrace.CustomAppAnomaliesUnexpectedLowLoadArgs{
Enabled: pulumi.Bool(false),
ThresholdPercentage: pulumi.Float64(0),
},
Scope: pulumi.String("string"),
})
var customAppAnomaliesResource = new CustomAppAnomalies("customAppAnomaliesResource", CustomAppAnomaliesArgs.builder()
.errorRateIncrease(CustomAppAnomaliesErrorRateIncreaseArgs.builder()
.enabled(false)
.detectionMode("string")
.errorRateIncreaseAuto(CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseAutoArgs.builder()
.thresholdAbsolute(0)
.thresholdRelative(0)
.build())
.errorRateIncreaseFixed(CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseFixedArgs.builder()
.sensitivity("string")
.thresholdAbsolute(0)
.build())
.build())
.slowUserActions(CustomAppAnomaliesSlowUserActionsArgs.builder()
.enabled(false)
.detectionMode("string")
.slowUserActionsAuto(CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoArgs.builder()
.durationAvoidOveralerting(CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationAvoidOveralertingArgs.builder()
.minActionRate(0)
.build())
.durationThresholdAll(CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdAllArgs.builder()
.durationThreshold(0)
.slowdownPercentage(0)
.build())
.durationThresholdSlowest(CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdSlowestArgs.builder()
.durationThreshold(0)
.slowdownPercentage(0)
.build())
.build())
.slowUserActionsFixed(CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedArgs.builder()
.durationAvoidOveralerting(CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationAvoidOveralertingArgs.builder()
.minActionRate(0)
.build())
.durationThresholdAllFixed(CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdAllFixedArgs.builder()
.durationThreshold(0)
.build())
.durationThresholdSlowest(CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdSlowestArgs.builder()
.durationThreshold(0)
.build())
.sensitivity("string")
.build())
.build())
.unexpectedHighLoad(CustomAppAnomaliesUnexpectedHighLoadArgs.builder()
.enabled(false)
.thresholdPercentage(0)
.build())
.unexpectedLowLoad(CustomAppAnomaliesUnexpectedLowLoadArgs.builder()
.enabled(false)
.thresholdPercentage(0)
.build())
.scope("string")
.build());
custom_app_anomalies_resource = dynatrace.CustomAppAnomalies("customAppAnomaliesResource",
error_rate_increase={
"enabled": False,
"detection_mode": "string",
"error_rate_increase_auto": {
"threshold_absolute": 0,
"threshold_relative": 0,
},
"error_rate_increase_fixed": {
"sensitivity": "string",
"threshold_absolute": 0,
},
},
slow_user_actions={
"enabled": False,
"detection_mode": "string",
"slow_user_actions_auto": {
"duration_avoid_overalerting": {
"min_action_rate": 0,
},
"duration_threshold_all": {
"duration_threshold": 0,
"slowdown_percentage": 0,
},
"duration_threshold_slowest": {
"duration_threshold": 0,
"slowdown_percentage": 0,
},
},
"slow_user_actions_fixed": {
"duration_avoid_overalerting": {
"min_action_rate": 0,
},
"duration_threshold_all_fixed": {
"duration_threshold": 0,
},
"duration_threshold_slowest": {
"duration_threshold": 0,
},
"sensitivity": "string",
},
},
unexpected_high_load={
"enabled": False,
"threshold_percentage": 0,
},
unexpected_low_load={
"enabled": False,
"threshold_percentage": 0,
},
scope="string")
const customAppAnomaliesResource = new dynatrace.CustomAppAnomalies("customAppAnomaliesResource", {
errorRateIncrease: {
enabled: false,
detectionMode: "string",
errorRateIncreaseAuto: {
thresholdAbsolute: 0,
thresholdRelative: 0,
},
errorRateIncreaseFixed: {
sensitivity: "string",
thresholdAbsolute: 0,
},
},
slowUserActions: {
enabled: false,
detectionMode: "string",
slowUserActionsAuto: {
durationAvoidOveralerting: {
minActionRate: 0,
},
durationThresholdAll: {
durationThreshold: 0,
slowdownPercentage: 0,
},
durationThresholdSlowest: {
durationThreshold: 0,
slowdownPercentage: 0,
},
},
slowUserActionsFixed: {
durationAvoidOveralerting: {
minActionRate: 0,
},
durationThresholdAllFixed: {
durationThreshold: 0,
},
durationThresholdSlowest: {
durationThreshold: 0,
},
sensitivity: "string",
},
},
unexpectedHighLoad: {
enabled: false,
thresholdPercentage: 0,
},
unexpectedLowLoad: {
enabled: false,
thresholdPercentage: 0,
},
scope: "string",
});
type: dynatrace:CustomAppAnomalies
properties:
errorRateIncrease:
detectionMode: string
enabled: false
errorRateIncreaseAuto:
thresholdAbsolute: 0
thresholdRelative: 0
errorRateIncreaseFixed:
sensitivity: string
thresholdAbsolute: 0
scope: string
slowUserActions:
detectionMode: string
enabled: false
slowUserActionsAuto:
durationAvoidOveralerting:
minActionRate: 0
durationThresholdAll:
durationThreshold: 0
slowdownPercentage: 0
durationThresholdSlowest:
durationThreshold: 0
slowdownPercentage: 0
slowUserActionsFixed:
durationAvoidOveralerting:
minActionRate: 0
durationThresholdAllFixed:
durationThreshold: 0
durationThresholdSlowest:
durationThreshold: 0
sensitivity: string
unexpectedHighLoad:
enabled: false
thresholdPercentage: 0
unexpectedLowLoad:
enabled: false
thresholdPercentage: 0
CustomAppAnomalies 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 CustomAppAnomalies resource accepts the following input properties:
- Error
Rate Increase This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Error Rate Increase - Error rate increase
- Slow
User Actions This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions - Slow user actions
- Unexpected
High Load This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Unexpected High Load - Unexpected high load
- Unexpected
Low Load This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Unexpected Low Load - Unexpected low load
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- Error
Rate Increase This property is required. CustomApp Anomalies Error Rate Increase Args - Error rate increase
- Slow
User Actions This property is required. CustomApp Anomalies Slow User Actions Args - Slow user actions
- Unexpected
High Load This property is required. CustomApp Anomalies Unexpected High Load Args - Unexpected high load
- Unexpected
Low Load This property is required. CustomApp Anomalies Unexpected Low Load Args - Unexpected low load
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- error
Rate Increase This property is required. CustomApp Anomalies Error Rate Increase - Error rate increase
- slow
User Actions This property is required. CustomApp Anomalies Slow User Actions - Slow user actions
- unexpected
High Load This property is required. CustomApp Anomalies Unexpected High Load - Unexpected high load
- unexpected
Low Load This property is required. CustomApp Anomalies Unexpected Low Load - Unexpected low load
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- error
Rate Increase This property is required. CustomApp Anomalies Error Rate Increase - Error rate increase
- slow
User Actions This property is required. CustomApp Anomalies Slow User Actions - Slow user actions
- unexpected
High Load This property is required. CustomApp Anomalies Unexpected High Load - Unexpected high load
- unexpected
Low Load This property is required. CustomApp Anomalies Unexpected Low Load - Unexpected low load
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- error_
rate_ increase This property is required. CustomApp Anomalies Error Rate Increase Args - Error rate increase
- slow_
user_ actions This property is required. CustomApp Anomalies Slow User Actions Args - Slow user actions
- unexpected_
high_ load This property is required. CustomApp Anomalies Unexpected High Load Args - Unexpected high load
- unexpected_
low_ load This property is required. CustomApp Anomalies Unexpected Low Load Args - Unexpected low load
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- error
Rate Increase This property is required. Property Map - Error rate increase
- slow
User Actions This property is required. Property Map - Slow user actions
- unexpected
High Load This property is required. Property Map - Unexpected high load
- unexpected
Low Load This property is required. Property Map - Unexpected low load
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
Outputs
All input properties are implicitly available as output properties. Additionally, the CustomAppAnomalies 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 CustomAppAnomalies Resource
Get an existing CustomAppAnomalies 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?: CustomAppAnomaliesState, opts?: CustomResourceOptions): CustomAppAnomalies
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
error_rate_increase: Optional[CustomAppAnomaliesErrorRateIncreaseArgs] = None,
scope: Optional[str] = None,
slow_user_actions: Optional[CustomAppAnomaliesSlowUserActionsArgs] = None,
unexpected_high_load: Optional[CustomAppAnomaliesUnexpectedHighLoadArgs] = None,
unexpected_low_load: Optional[CustomAppAnomaliesUnexpectedLowLoadArgs] = None) -> CustomAppAnomalies
func GetCustomAppAnomalies(ctx *Context, name string, id IDInput, state *CustomAppAnomaliesState, opts ...ResourceOption) (*CustomAppAnomalies, error)
public static CustomAppAnomalies Get(string name, Input<string> id, CustomAppAnomaliesState? state, CustomResourceOptions? opts = null)
public static CustomAppAnomalies get(String name, Output<String> id, CustomAppAnomaliesState state, CustomResourceOptions options)
resources: _: type: dynatrace:CustomAppAnomalies 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.
- Error
Rate Pulumiverse.Increase Dynatrace. Inputs. Custom App Anomalies Error Rate Increase - Error rate increase
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- Slow
User Pulumiverse.Actions Dynatrace. Inputs. Custom App Anomalies Slow User Actions - Slow user actions
- Unexpected
High Pulumiverse.Load Dynatrace. Inputs. Custom App Anomalies Unexpected High Load - Unexpected high load
- Unexpected
Low Pulumiverse.Load Dynatrace. Inputs. Custom App Anomalies Unexpected Low Load - Unexpected low load
- Error
Rate CustomIncrease App Anomalies Error Rate Increase Args - Error rate increase
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- Slow
User CustomActions App Anomalies Slow User Actions Args - Slow user actions
- Unexpected
High CustomLoad App Anomalies Unexpected High Load Args - Unexpected high load
- Unexpected
Low CustomLoad App Anomalies Unexpected Low Load Args - Unexpected low load
- error
Rate CustomIncrease App Anomalies Error Rate Increase - Error rate increase
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- slow
User CustomActions App Anomalies Slow User Actions - Slow user actions
- unexpected
High CustomLoad App Anomalies Unexpected High Load - Unexpected high load
- unexpected
Low CustomLoad App Anomalies Unexpected Low Load - Unexpected low load
- error
Rate CustomIncrease App Anomalies Error Rate Increase - Error rate increase
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- slow
User CustomActions App Anomalies Slow User Actions - Slow user actions
- unexpected
High CustomLoad App Anomalies Unexpected High Load - Unexpected high load
- unexpected
Low CustomLoad App Anomalies Unexpected Low Load - Unexpected low load
- error_
rate_ Customincrease App Anomalies Error Rate Increase Args - Error rate increase
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- slow_
user_ Customactions App Anomalies Slow User Actions Args - Slow user actions
- unexpected_
high_ Customload App Anomalies Unexpected High Load Args - Unexpected high load
- unexpected_
low_ Customload App Anomalies Unexpected Low Load Args - Unexpected low load
- error
Rate Property MapIncrease - Error rate increase
- scope
Changes to this property will trigger replacement.
- The scope of this setting (DEVICEAPPLICATIONMETHOD CUSTOM_APPLICATION environment)
- slow
User Property MapActions - Slow user actions
- unexpected
High Property MapLoad - Unexpected high load
- unexpected
Low Property MapLoad - Unexpected low load
Supporting Types
CustomAppAnomaliesErrorRateIncrease, CustomAppAnomaliesErrorRateIncreaseArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Detection
Mode string - Possible Values:
Auto
,Fixed
- Error
Rate Pulumiverse.Increase Auto Dynatrace. Inputs. Custom App Anomalies Error Rate Increase Error Rate Increase Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- Error
Rate Pulumiverse.Increase Fixed Dynatrace. Inputs. Custom App Anomalies Error Rate Increase Error Rate Increase Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Detection
Mode string - Possible Values:
Auto
,Fixed
- Error
Rate CustomIncrease Auto App Anomalies Error Rate Increase Error Rate Increase Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- Error
Rate CustomIncrease Fixed App Anomalies Error Rate Increase Error Rate Increase Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode String - Possible Values:
Auto
,Fixed
- error
Rate CustomIncrease Auto App Anomalies Error Rate Increase Error Rate Increase Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- error
Rate CustomIncrease Fixed App Anomalies Error Rate Increase Error Rate Increase Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode string - Possible Values:
Auto
,Fixed
- error
Rate CustomIncrease Auto App Anomalies Error Rate Increase Error Rate Increase Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- error
Rate CustomIncrease Fixed App Anomalies Error Rate Increase Error Rate Increase Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - detection_
mode str - Possible Values:
Auto
,Fixed
- error_
rate_ Customincrease_ auto App Anomalies Error Rate Increase Error Rate Increase Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- error_
rate_ Customincrease_ fixed App Anomalies Error Rate Increase Error Rate Increase Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode String - Possible Values:
Auto
,Fixed
- error
Rate Property MapIncrease Auto - Alert if the percentage of user actions affected by reported errors exceeds both the absolute threshold and the relative threshold
- error
Rate Property MapIncrease Fixed - Alert if the custom reported error rate threshold is exceeded during any 5-minute period
CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseAuto, CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseAutoArgs
- Threshold
Absolute This property is required. double - Absolute threshold
- Threshold
Relative This property is required. double - Relative threshold
- Threshold
Absolute This property is required. float64 - Absolute threshold
- Threshold
Relative This property is required. float64 - Relative threshold
- threshold
Absolute This property is required. Double - Absolute threshold
- threshold
Relative This property is required. Double - Relative threshold
- threshold
Absolute This property is required. number - Absolute threshold
- threshold
Relative This property is required. number - Relative threshold
- threshold_
absolute This property is required. float - Absolute threshold
- threshold_
relative This property is required. float - Relative threshold
- threshold
Absolute This property is required. Number - Absolute threshold
- threshold
Relative This property is required. Number - Relative threshold
CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseFixed, CustomAppAnomaliesErrorRateIncreaseErrorRateIncreaseFixedArgs
- Sensitivity
This property is required. string - Possible Values:
Low
,Medium
,High
- Threshold
Absolute This property is required. double - Absolute threshold
- Sensitivity
This property is required. string - Possible Values:
Low
,Medium
,High
- Threshold
Absolute This property is required. float64 - Absolute threshold
- sensitivity
This property is required. String - Possible Values:
Low
,Medium
,High
- threshold
Absolute This property is required. Double - Absolute threshold
- sensitivity
This property is required. string - Possible Values:
Low
,Medium
,High
- threshold
Absolute This property is required. number - Absolute threshold
- sensitivity
This property is required. str - Possible Values:
Low
,Medium
,High
- threshold_
absolute This property is required. float - Absolute threshold
- sensitivity
This property is required. String - Possible Values:
Low
,Medium
,High
- threshold
Absolute This property is required. Number - Absolute threshold
CustomAppAnomaliesSlowUserActions, CustomAppAnomaliesSlowUserActionsArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Detection
Mode string - Possible Values:
Auto
,Fixed
- Slow
User Pulumiverse.Actions Auto Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Auto - no documentation available
- Slow
User Pulumiverse.Actions Fixed Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Fixed - no documentation available
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Detection
Mode string - Possible Values:
Auto
,Fixed
- Slow
User CustomActions Auto App Anomalies Slow User Actions Slow User Actions Auto - no documentation available
- Slow
User CustomActions Fixed App Anomalies Slow User Actions Slow User Actions Fixed - no documentation available
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode String - Possible Values:
Auto
,Fixed
- slow
User CustomActions Auto App Anomalies Slow User Actions Slow User Actions Auto - no documentation available
- slow
User CustomActions Fixed App Anomalies Slow User Actions Slow User Actions Fixed - no documentation available
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode string - Possible Values:
Auto
,Fixed
- slow
User CustomActions Auto App Anomalies Slow User Actions Slow User Actions Auto - no documentation available
- slow
User CustomActions Fixed App Anomalies Slow User Actions Slow User Actions Fixed - no documentation available
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - detection_
mode str - Possible Values:
Auto
,Fixed
- slow_
user_ Customactions_ auto App Anomalies Slow User Actions Slow User Actions Auto - no documentation available
- slow_
user_ Customactions_ fixed App Anomalies Slow User Actions Slow User Actions Fixed - no documentation available
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - detection
Mode String - Possible Values:
Auto
,Fixed
- slow
User Property MapActions Auto - no documentation available
- slow
User Property MapActions Fixed - no documentation available
CustomAppAnomaliesSlowUserActionsSlowUserActionsAuto, CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoArgs
This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Auto Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- Duration
Threshold All This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Auto Duration Threshold All - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- Duration
Threshold Slowest This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Auto Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- Duration
Threshold All This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold All - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- Duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold All - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold All - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
- duration_
avoid_ overalerting This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration_
threshold_ all This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold All - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- duration_
threshold_ slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Auto Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
This property is required. Property Map- To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All This property is required. Property Map - Alert if the action duration of all user actions degrades beyond both the absolute and relative threshold:
- duration
Threshold Slowest This property is required. Property Map - Alert if the action duration of the slowest 10% of user actions degrades beyond both the absolute and relative threshold:
CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationAvoidOveralerting, CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationAvoidOveralertingArgs
- Min
Action Rate This property is required. int - no documentation available
- Min
Action Rate This property is required. int - no documentation available
- min
Action Rate This property is required. Integer - no documentation available
- min
Action Rate This property is required. number - no documentation available
- min_
action_ rate This property is required. int - no documentation available
- min
Action Rate This property is required. Number - no documentation available
CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdAll, CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdAllArgs
- Duration
Threshold This property is required. double - Absolute threshold
- Slowdown
Percentage This property is required. double - Relative threshold
- Duration
Threshold This property is required. float64 - Absolute threshold
- Slowdown
Percentage This property is required. float64 - Relative threshold
- duration
Threshold This property is required. Double - Absolute threshold
- slowdown
Percentage This property is required. Double - Relative threshold
- duration
Threshold This property is required. number - Absolute threshold
- slowdown
Percentage This property is required. number - Relative threshold
- duration_
threshold This property is required. float - Absolute threshold
- slowdown_
percentage This property is required. float - Relative threshold
- duration
Threshold This property is required. Number - Absolute threshold
- slowdown
Percentage This property is required. Number - Relative threshold
CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdSlowest, CustomAppAnomaliesSlowUserActionsSlowUserActionsAutoDurationThresholdSlowestArgs
- Duration
Threshold This property is required. double - Absolute threshold
- Slowdown
Percentage This property is required. double - Relative threshold
- Duration
Threshold This property is required. float64 - Absolute threshold
- Slowdown
Percentage This property is required. float64 - Relative threshold
- duration
Threshold This property is required. Double - Absolute threshold
- slowdown
Percentage This property is required. Double - Relative threshold
- duration
Threshold This property is required. number - Absolute threshold
- slowdown
Percentage This property is required. number - Relative threshold
- duration_
threshold This property is required. float - Absolute threshold
- slowdown_
percentage This property is required. float - Relative threshold
- duration
Threshold This property is required. Number - Absolute threshold
- slowdown
Percentage This property is required. Number - Relative threshold
CustomAppAnomaliesSlowUserActionsSlowUserActionsFixed, CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedArgs
This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Fixed Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- Duration
Threshold All Fixed This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold All Fixed - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- Duration
Threshold Slowest This property is required. Pulumiverse.Dynatrace. Inputs. Custom App Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- Sensitivity
This property is required. string - Possible Values:
Medium
,High
,Low
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- Duration
Threshold All Fixed This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold All Fixed - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- Duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- Sensitivity
This property is required. string - Possible Values:
Medium
,High
,Low
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All Fixed This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold All Fixed - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- sensitivity
This property is required. String - Possible Values:
Medium
,High
,Low
This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All Fixed This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold All Fixed - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- duration
Threshold Slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- sensitivity
This property is required. string - Possible Values:
Medium
,High
,Low
- duration_
avoid_ overalerting This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Avoid Overalerting - To avoid over-alerting do not alert for low traffic applications with less than
- duration_
threshold_ all_ fixed This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold All Fixed - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- duration_
threshold_ slowest This property is required. CustomApp Anomalies Slow User Actions Slow User Actions Fixed Duration Threshold Slowest - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- sensitivity
This property is required. str - Possible Values:
Medium
,High
,Low
This property is required. Property Map- To avoid over-alerting do not alert for low traffic applications with less than
- duration
Threshold All Fixed This property is required. Property Map - Alert if the action duration of all user actions degrades beyond the absolute threshold:
- duration
Threshold Slowest This property is required. Property Map - Alert if the action duration of the slowest 10% of user actions degrades beyond the absolute threshold:
- sensitivity
This property is required. String - Possible Values:
Medium
,High
,Low
CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationAvoidOveralerting, CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationAvoidOveralertingArgs
- Min
Action Rate This property is required. int - no documentation available
- Min
Action Rate This property is required. int - no documentation available
- min
Action Rate This property is required. Integer - no documentation available
- min
Action Rate This property is required. number - no documentation available
- min_
action_ rate This property is required. int - no documentation available
- min
Action Rate This property is required. Number - no documentation available
CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdAllFixed, CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdAllFixedArgs
- Duration
Threshold This property is required. double - Absolute threshold
- Duration
Threshold This property is required. float64 - Absolute threshold
- duration
Threshold This property is required. Double - Absolute threshold
- duration
Threshold This property is required. number - Absolute threshold
- duration_
threshold This property is required. float - Absolute threshold
- duration
Threshold This property is required. Number - Absolute threshold
CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdSlowest, CustomAppAnomaliesSlowUserActionsSlowUserActionsFixedDurationThresholdSlowestArgs
- Duration
Threshold This property is required. double - Absolute threshold
- Duration
Threshold This property is required. float64 - Absolute threshold
- duration
Threshold This property is required. Double - Absolute threshold
- duration
Threshold This property is required. number - Absolute threshold
- duration_
threshold This property is required. float - Absolute threshold
- duration
Threshold This property is required. Number - Absolute threshold
CustomAppAnomaliesUnexpectedHighLoad, CustomAppAnomaliesUnexpectedHighLoadArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Threshold
Percentage double - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Threshold
Percentage float64 - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage Double - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage number - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - threshold_
percentage float - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage Number - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic spikes within your application.
CustomAppAnomaliesUnexpectedLowLoad, CustomAppAnomaliesUnexpectedLowLoadArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Threshold
Percentage double - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Threshold
Percentage float64 - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage Double - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage number - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - threshold_
percentage float - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - threshold
Percentage Number - Dynatrace learns your typical application traffic over an observation period of one week. Depending on this expected value Dynatrace detects abnormal traffic drops within your application.
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.