dynatrace.ServiceAnomaliesV2
Explore with Pulumi AI
Create ServiceAnomaliesV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceAnomaliesV2(name: string, args: ServiceAnomaliesV2Args, opts?: CustomResourceOptions);
@overload
def ServiceAnomaliesV2(resource_name: str,
args: ServiceAnomaliesV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceAnomaliesV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
failure_rate: Optional[ServiceAnomaliesV2FailureRateArgs] = None,
load_drops: Optional[ServiceAnomaliesV2LoadDropsArgs] = None,
load_spikes: Optional[ServiceAnomaliesV2LoadSpikesArgs] = None,
response_time: Optional[ServiceAnomaliesV2ResponseTimeArgs] = None,
scope: Optional[str] = None)
func NewServiceAnomaliesV2(ctx *Context, name string, args ServiceAnomaliesV2Args, opts ...ResourceOption) (*ServiceAnomaliesV2, error)
public ServiceAnomaliesV2(string name, ServiceAnomaliesV2Args args, CustomResourceOptions? opts = null)
public ServiceAnomaliesV2(String name, ServiceAnomaliesV2Args args)
public ServiceAnomaliesV2(String name, ServiceAnomaliesV2Args args, CustomResourceOptions options)
type: dynatrace:ServiceAnomaliesV2
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. ServiceAnomaliesV2Args - 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. ServiceAnomaliesV2Args - 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. ServiceAnomaliesV2Args - 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. ServiceAnomaliesV2Args - 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. ServiceAnomaliesV2Args - 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 serviceAnomaliesV2Resource = new Dynatrace.ServiceAnomaliesV2("serviceAnomaliesV2Resource", new()
{
FailureRate = new Dynatrace.Inputs.ServiceAnomaliesV2FailureRateArgs
{
Enabled = false,
AutoDetection = new Dynatrace.Inputs.ServiceAnomaliesV2FailureRateAutoDetectionArgs
{
AbsoluteIncrease = 0,
OverAlertingProtection = new Dynatrace.Inputs.ServiceAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
RelativeIncrease = 0,
},
DetectionMode = "string",
FixedDetection = new Dynatrace.Inputs.ServiceAnomaliesV2FailureRateFixedDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.ServiceAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
Sensitivity = "string",
Threshold = 0,
},
},
LoadDrops = new Dynatrace.Inputs.ServiceAnomaliesV2LoadDropsArgs
{
Enabled = false,
LoadDropPercent = 0,
MinutesAbnormalState = 0,
},
LoadSpikes = new Dynatrace.Inputs.ServiceAnomaliesV2LoadSpikesArgs
{
Enabled = false,
LoadSpikePercent = 0,
MinutesAbnormalState = 0,
},
ResponseTime = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeArgs
{
Enabled = false,
AutoDetection = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeAutoDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
ResponseTimeAll = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs
{
DegradationMilliseconds = 0,
DegradationPercent = 0,
},
ResponseTimeSlowest = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs
{
SlowestDegradationMilliseconds = 0,
SlowestDegradationPercent = 0,
},
},
DetectionMode = "string",
FixedDetection = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeFixedDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
ResponseTimeAll = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs
{
DegradationMilliseconds = 0,
},
ResponseTimeSlowest = new Dynatrace.Inputs.ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs
{
SlowestDegradationMilliseconds = 0,
},
Sensitivity = "string",
},
},
Scope = "string",
});
example, err := dynatrace.NewServiceAnomaliesV2(ctx, "serviceAnomaliesV2Resource", &dynatrace.ServiceAnomaliesV2Args{
FailureRate: &dynatrace.ServiceAnomaliesV2FailureRateArgs{
Enabled: pulumi.Bool(false),
AutoDetection: &dynatrace.ServiceAnomaliesV2FailureRateAutoDetectionArgs{
AbsoluteIncrease: pulumi.Float64(0),
OverAlertingProtection: &dynatrace.ServiceAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
RelativeIncrease: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
FixedDetection: &dynatrace.ServiceAnomaliesV2FailureRateFixedDetectionArgs{
OverAlertingProtection: &dynatrace.ServiceAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
Sensitivity: pulumi.String("string"),
Threshold: pulumi.Float64(0),
},
},
LoadDrops: &dynatrace.ServiceAnomaliesV2LoadDropsArgs{
Enabled: pulumi.Bool(false),
LoadDropPercent: pulumi.Float64(0),
MinutesAbnormalState: pulumi.Int(0),
},
LoadSpikes: &dynatrace.ServiceAnomaliesV2LoadSpikesArgs{
Enabled: pulumi.Bool(false),
LoadSpikePercent: pulumi.Float64(0),
MinutesAbnormalState: pulumi.Int(0),
},
ResponseTime: &dynatrace.ServiceAnomaliesV2ResponseTimeArgs{
Enabled: pulumi.Bool(false),
AutoDetection: &dynatrace.ServiceAnomaliesV2ResponseTimeAutoDetectionArgs{
OverAlertingProtection: &dynatrace.ServiceAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
ResponseTimeAll: &dynatrace.ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs{
DegradationMilliseconds: pulumi.Float64(0),
DegradationPercent: pulumi.Float64(0),
},
ResponseTimeSlowest: &dynatrace.ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs{
SlowestDegradationMilliseconds: pulumi.Float64(0),
SlowestDegradationPercent: pulumi.Float64(0),
},
},
DetectionMode: pulumi.String("string"),
FixedDetection: &dynatrace.ServiceAnomaliesV2ResponseTimeFixedDetectionArgs{
OverAlertingProtection: &dynatrace.ServiceAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
ResponseTimeAll: &dynatrace.ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs{
DegradationMilliseconds: pulumi.Float64(0),
},
ResponseTimeSlowest: &dynatrace.ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs{
SlowestDegradationMilliseconds: pulumi.Float64(0),
},
Sensitivity: pulumi.String("string"),
},
},
Scope: pulumi.String("string"),
})
var serviceAnomaliesV2Resource = new ServiceAnomaliesV2("serviceAnomaliesV2Resource", ServiceAnomaliesV2Args.builder()
.failureRate(ServiceAnomaliesV2FailureRateArgs.builder()
.enabled(false)
.autoDetection(ServiceAnomaliesV2FailureRateAutoDetectionArgs.builder()
.absoluteIncrease(0)
.overAlertingProtection(ServiceAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.relativeIncrease(0)
.build())
.detectionMode("string")
.fixedDetection(ServiceAnomaliesV2FailureRateFixedDetectionArgs.builder()
.overAlertingProtection(ServiceAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.sensitivity("string")
.threshold(0)
.build())
.build())
.loadDrops(ServiceAnomaliesV2LoadDropsArgs.builder()
.enabled(false)
.loadDropPercent(0)
.minutesAbnormalState(0)
.build())
.loadSpikes(ServiceAnomaliesV2LoadSpikesArgs.builder()
.enabled(false)
.loadSpikePercent(0)
.minutesAbnormalState(0)
.build())
.responseTime(ServiceAnomaliesV2ResponseTimeArgs.builder()
.enabled(false)
.autoDetection(ServiceAnomaliesV2ResponseTimeAutoDetectionArgs.builder()
.overAlertingProtection(ServiceAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.responseTimeAll(ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs.builder()
.degradationMilliseconds(0)
.degradationPercent(0)
.build())
.responseTimeSlowest(ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs.builder()
.slowestDegradationMilliseconds(0)
.slowestDegradationPercent(0)
.build())
.build())
.detectionMode("string")
.fixedDetection(ServiceAnomaliesV2ResponseTimeFixedDetectionArgs.builder()
.overAlertingProtection(ServiceAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.responseTimeAll(ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs.builder()
.degradationMilliseconds(0)
.build())
.responseTimeSlowest(ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs.builder()
.slowestDegradationMilliseconds(0)
.build())
.sensitivity("string")
.build())
.build())
.scope("string")
.build());
service_anomalies_v2_resource = dynatrace.ServiceAnomaliesV2("serviceAnomaliesV2Resource",
failure_rate={
"enabled": False,
"auto_detection": {
"absolute_increase": 0,
"over_alerting_protection": {
"minutes_abnormal_state": 0,
"requests_per_minute": 0,
},
"relative_increase": 0,
},
"detection_mode": "string",
"fixed_detection": {
"over_alerting_protection": {
"minutes_abnormal_state": 0,
"requests_per_minute": 0,
},
"sensitivity": "string",
"threshold": 0,
},
},
load_drops={
"enabled": False,
"load_drop_percent": 0,
"minutes_abnormal_state": 0,
},
load_spikes={
"enabled": False,
"load_spike_percent": 0,
"minutes_abnormal_state": 0,
},
response_time={
"enabled": False,
"auto_detection": {
"over_alerting_protection": {
"minutes_abnormal_state": 0,
"requests_per_minute": 0,
},
"response_time_all": {
"degradation_milliseconds": 0,
"degradation_percent": 0,
},
"response_time_slowest": {
"slowest_degradation_milliseconds": 0,
"slowest_degradation_percent": 0,
},
},
"detection_mode": "string",
"fixed_detection": {
"over_alerting_protection": {
"minutes_abnormal_state": 0,
"requests_per_minute": 0,
},
"response_time_all": {
"degradation_milliseconds": 0,
},
"response_time_slowest": {
"slowest_degradation_milliseconds": 0,
},
"sensitivity": "string",
},
},
scope="string")
const serviceAnomaliesV2Resource = new dynatrace.ServiceAnomaliesV2("serviceAnomaliesV2Resource", {
failureRate: {
enabled: false,
autoDetection: {
absoluteIncrease: 0,
overAlertingProtection: {
minutesAbnormalState: 0,
requestsPerMinute: 0,
},
relativeIncrease: 0,
},
detectionMode: "string",
fixedDetection: {
overAlertingProtection: {
minutesAbnormalState: 0,
requestsPerMinute: 0,
},
sensitivity: "string",
threshold: 0,
},
},
loadDrops: {
enabled: false,
loadDropPercent: 0,
minutesAbnormalState: 0,
},
loadSpikes: {
enabled: false,
loadSpikePercent: 0,
minutesAbnormalState: 0,
},
responseTime: {
enabled: false,
autoDetection: {
overAlertingProtection: {
minutesAbnormalState: 0,
requestsPerMinute: 0,
},
responseTimeAll: {
degradationMilliseconds: 0,
degradationPercent: 0,
},
responseTimeSlowest: {
slowestDegradationMilliseconds: 0,
slowestDegradationPercent: 0,
},
},
detectionMode: "string",
fixedDetection: {
overAlertingProtection: {
minutesAbnormalState: 0,
requestsPerMinute: 0,
},
responseTimeAll: {
degradationMilliseconds: 0,
},
responseTimeSlowest: {
slowestDegradationMilliseconds: 0,
},
sensitivity: "string",
},
},
scope: "string",
});
type: dynatrace:ServiceAnomaliesV2
properties:
failureRate:
autoDetection:
absoluteIncrease: 0
overAlertingProtection:
minutesAbnormalState: 0
requestsPerMinute: 0
relativeIncrease: 0
detectionMode: string
enabled: false
fixedDetection:
overAlertingProtection:
minutesAbnormalState: 0
requestsPerMinute: 0
sensitivity: string
threshold: 0
loadDrops:
enabled: false
loadDropPercent: 0
minutesAbnormalState: 0
loadSpikes:
enabled: false
loadSpikePercent: 0
minutesAbnormalState: 0
responseTime:
autoDetection:
overAlertingProtection:
minutesAbnormalState: 0
requestsPerMinute: 0
responseTimeAll:
degradationMilliseconds: 0
degradationPercent: 0
responseTimeSlowest:
slowestDegradationMilliseconds: 0
slowestDegradationPercent: 0
detectionMode: string
enabled: false
fixedDetection:
overAlertingProtection:
minutesAbnormalState: 0
requestsPerMinute: 0
responseTimeAll:
degradationMilliseconds: 0
responseTimeSlowest:
slowestDegradationMilliseconds: 0
sensitivity: string
scope: string
ServiceAnomaliesV2 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 ServiceAnomaliesV2 resource accepts the following input properties:
- Failure
Rate This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate - Failure rate
- Load
Drops This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- Load
Spikes This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- Response
Time This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time - Response time
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- Failure
Rate This property is required. ServiceAnomalies V2Failure Rate Args - Failure rate
- Load
Drops This property is required. ServiceAnomalies V2Load Drops Args - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- Load
Spikes This property is required. ServiceAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- Response
Time This property is required. ServiceAnomalies V2Response Time Args - Response time
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate This property is required. ServiceAnomalies V2Failure Rate - Failure rate
- load
Drops This property is required. ServiceAnomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes This property is required. ServiceAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time This property is required. ServiceAnomalies V2Response Time - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate This property is required. ServiceAnomalies V2Failure Rate - Failure rate
- load
Drops This property is required. ServiceAnomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes This property is required. ServiceAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time This property is required. ServiceAnomalies V2Response Time - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure_
rate This property is required. ServiceAnomalies V2Failure Rate Args - Failure rate
- load_
drops This property is required. ServiceAnomalies V2Load Drops Args - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load_
spikes This property is required. ServiceAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response_
time This property is required. ServiceAnomalies V2Response Time Args - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate This property is required. Property Map - Failure rate
- load
Drops This property is required. Property Map - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes This property is required. Property Map - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time This property is required. Property Map - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceAnomaliesV2 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 ServiceAnomaliesV2 Resource
Get an existing ServiceAnomaliesV2 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?: ServiceAnomaliesV2State, opts?: CustomResourceOptions): ServiceAnomaliesV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
failure_rate: Optional[ServiceAnomaliesV2FailureRateArgs] = None,
load_drops: Optional[ServiceAnomaliesV2LoadDropsArgs] = None,
load_spikes: Optional[ServiceAnomaliesV2LoadSpikesArgs] = None,
response_time: Optional[ServiceAnomaliesV2ResponseTimeArgs] = None,
scope: Optional[str] = None) -> ServiceAnomaliesV2
func GetServiceAnomaliesV2(ctx *Context, name string, id IDInput, state *ServiceAnomaliesV2State, opts ...ResourceOption) (*ServiceAnomaliesV2, error)
public static ServiceAnomaliesV2 Get(string name, Input<string> id, ServiceAnomaliesV2State? state, CustomResourceOptions? opts = null)
public static ServiceAnomaliesV2 get(String name, Output<String> id, ServiceAnomaliesV2State state, CustomResourceOptions options)
resources: _: type: dynatrace:ServiceAnomaliesV2 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.
- Failure
Rate Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate - Failure rate
- Load
Drops Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- Load
Spikes Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- Response
Time Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time - Response time
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- Failure
Rate ServiceAnomalies V2Failure Rate Args - Failure rate
- Load
Drops ServiceAnomalies V2Load Drops Args - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- Load
Spikes ServiceAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- Response
Time ServiceAnomalies V2Response Time Args - Response time
- Scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate ServiceAnomalies V2Failure Rate - Failure rate
- load
Drops ServiceAnomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes ServiceAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time ServiceAnomalies V2Response Time - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate ServiceAnomalies V2Failure Rate - Failure rate
- load
Drops ServiceAnomalies V2Load Drops - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes ServiceAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time ServiceAnomalies V2Response Time - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure_
rate ServiceAnomalies V2Failure Rate Args - Failure rate
- load_
drops ServiceAnomalies V2Load Drops Args - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load_
spikes ServiceAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response_
time ServiceAnomalies V2Response Time Args - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
- failure
Rate Property Map - Failure rate
- load
Drops Property Map - Alert if the observed load is lower than the expected load by a specified margin for a specified amount of time:
- load
Spikes Property Map - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time:
- response
Time Property Map - Response time
- scope
Changes to this property will trigger replacement.
- The scope of this setting (SERVICEMETHOD, SERVICE, HOSTGROUP). Omit this property if you want to cover the whole environment.
Supporting Types
ServiceAnomaliesV2FailureRate, ServiceAnomaliesV2FailureRateArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Auto
Detection Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- Detection
Mode string - Possible Values:
Auto
,Fixed
- Fixed
Detection Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Auto
Detection ServiceAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- Detection
Mode string - Possible Values:
Auto
,Fixed
- Fixed
Detection ServiceAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection ServiceAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode String - Possible Values:
Auto
,Fixed
- fixed
Detection ServiceAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection ServiceAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode string - Possible Values:
Auto
,Fixed
- fixed
Detection ServiceAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - auto_
detection ServiceAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection_
mode str - Possible Values:
Auto
,Fixed
- fixed_
detection ServiceAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection Property Map - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode String - Possible Values:
Auto
,Fixed
- fixed
Detection Property Map - Alert if a given failure rate is exceeded during any 5-minute-period
ServiceAnomaliesV2FailureRateAutoDetection, ServiceAnomaliesV2FailureRateAutoDetectionArgs
- Absolute
Increase This property is required. double - Absolute threshold
- Over
Alerting Protection This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- Relative
Increase This property is required. double - Relative threshold
- Absolute
Increase This property is required. float64 - Absolute threshold
- Over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- Relative
Increase This property is required. float64 - Relative threshold
- absolute
Increase This property is required. Double - Absolute threshold
- over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative
Increase This property is required. Double - Relative threshold
- absolute
Increase This property is required. number - Absolute threshold
- over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative
Increase This property is required. number - Relative threshold
- absolute_
increase This property is required. float - Absolute threshold
- over_
alerting_ protection This property is required. ServiceAnomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative_
increase This property is required. float - Relative threshold
- absolute
Increase This property is required. Number - Absolute threshold
- over
Alerting Protection This property is required. Property Map - Avoid over-alerting
- relative
Increase This property is required. Number - Relative threshold
ServiceAnomaliesV2FailureRateAutoDetectionOverAlertingProtection, ServiceAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. double - Only alert if there are at least
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. float64 - Only alert if there are at least
- minutes
Abnormal State This property is required. Integer - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Double - Only alert if there are at least
- minutes
Abnormal State This property is required. number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. number - Only alert if there are at least
- minutes_
abnormal_ state This property is required. int - Only alert if the abnormal state remains for at least
- requests_
per_ minute This property is required. float - Only alert if there are at least
- minutes
Abnormal State This property is required. Number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Number - Only alert if there are at least
ServiceAnomaliesV2FailureRateFixedDetection, ServiceAnomaliesV2FailureRateFixedDetectionArgs
- Over
Alerting Protection This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- Sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- Threshold
This property is required. double - no documentation available
- Over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- Sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- Threshold
This property is required. float64 - no documentation available
- over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity
This property is required. String - Possible Values:
High
,Low
,Medium
- threshold
This property is required. Double - no documentation available
- over
Alerting Protection This property is required. ServiceAnomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- threshold
This property is required. number - no documentation available
- over_
alerting_ protection This property is required. ServiceAnomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity
This property is required. str - Possible Values:
High
,Low
,Medium
- threshold
This property is required. float - no documentation available
- over
Alerting Protection This property is required. Property Map - Avoid over-alerting
- sensitivity
This property is required. String - Possible Values:
High
,Low
,Medium
- threshold
This property is required. Number - no documentation available
ServiceAnomaliesV2FailureRateFixedDetectionOverAlertingProtection, ServiceAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. double - Only alert if there are at least
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. float64 - Only alert if there are at least
- minutes
Abnormal State This property is required. Integer - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Double - Only alert if there are at least
- minutes
Abnormal State This property is required. number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. number - Only alert if there are at least
- minutes_
abnormal_ state This property is required. int - Only alert if the abnormal state remains for at least
- requests_
per_ minute This property is required. float - Only alert if there are at least
- minutes
Abnormal State This property is required. Number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Number - Only alert if there are at least
ServiceAnomaliesV2LoadDrops, ServiceAnomaliesV2LoadDropsArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Load
Drop doublePercent - Threshold
- Minutes
Abnormal intState - Time span
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Load
Drop float64Percent - Threshold
- Minutes
Abnormal intState - Time span
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - load
Drop DoublePercent - Threshold
- minutes
Abnormal IntegerState - Time span
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - load
Drop numberPercent - Threshold
- minutes
Abnormal numberState - Time span
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - load_
drop_ floatpercent - Threshold
- minutes_
abnormal_ intstate - Time span
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - load
Drop NumberPercent - Threshold
- minutes
Abnormal NumberState - Time span
ServiceAnomaliesV2LoadSpikes, ServiceAnomaliesV2LoadSpikesArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Load
Spike doublePercent - Threshold
- Minutes
Abnormal intState - Time span
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Load
Spike float64Percent - Threshold
- Minutes
Abnormal intState - Time span
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - load
Spike DoublePercent - Threshold
- minutes
Abnormal IntegerState - Time span
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - load
Spike numberPercent - Threshold
- minutes
Abnormal numberState - Time span
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - load_
spike_ floatpercent - Threshold
- minutes_
abnormal_ intstate - Time span
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - load
Spike NumberPercent - Threshold
- minutes
Abnormal NumberState - Time span
ServiceAnomaliesV2ResponseTime, ServiceAnomaliesV2ResponseTimeArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Auto
Detection Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Auto Detection - no documentation available
- Detection
Mode string - Possible Values:
Auto
,Fixed
- Fixed
Detection Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Fixed Detection - no documentation available
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Auto
Detection ServiceAnomalies V2Response Time Auto Detection - no documentation available
- Detection
Mode string - Possible Values:
Auto
,Fixed
- Fixed
Detection ServiceAnomalies V2Response Time Fixed Detection - no documentation available
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection ServiceAnomalies V2Response Time Auto Detection - no documentation available
- detection
Mode String - Possible Values:
Auto
,Fixed
- fixed
Detection ServiceAnomalies V2Response Time Fixed Detection - no documentation available
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection ServiceAnomalies V2Response Time Auto Detection - no documentation available
- detection
Mode string - Possible Values:
Auto
,Fixed
- fixed
Detection ServiceAnomalies V2Response Time Fixed Detection - no documentation available
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - auto_
detection ServiceAnomalies V2Response Time Auto Detection - no documentation available
- detection_
mode str - Possible Values:
Auto
,Fixed
- fixed_
detection ServiceAnomalies V2Response Time Fixed Detection - no documentation available
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - auto
Detection Property Map - no documentation available
- detection
Mode String - Possible Values:
Auto
,Fixed
- fixed
Detection Property Map - no documentation available
ServiceAnomaliesV2ResponseTimeAutoDetection, ServiceAnomaliesV2ResponseTimeAutoDetectionArgs
- Over
Alerting Protection This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- Response
Time All This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Auto Detection Response Time All - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- Response
Time Slowest This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Auto Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
- Over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- Response
Time All This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time All - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- Response
Time Slowest This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
- over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response
Time All This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time All - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- response
Time Slowest This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
- over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response
Time All This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time All - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- response
Time Slowest This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
- over_
alerting_ protection This property is required. ServiceAnomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response_
time_ all This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time All - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- response_
time_ slowest This property is required. ServiceAnomalies V2Response Time Auto Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
- over
Alerting Protection This property is required. Property Map - Avoid over-alerting
- response
Time All This property is required. Property Map - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- response
Time Slowest This property is required. Property Map - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
ServiceAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtection, ServiceAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. double - Only alert if there are at least
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. float64 - Only alert if there are at least
- minutes
Abnormal State This property is required. Integer - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Double - Only alert if there are at least
- minutes
Abnormal State This property is required. number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. number - Only alert if there are at least
- minutes_
abnormal_ state This property is required. int - Only alert if the abnormal state remains for at least
- requests_
per_ minute This property is required. float - Only alert if there are at least
- minutes
Abnormal State This property is required. Number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Number - Only alert if there are at least
ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeAll, ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs
- Degradation
Milliseconds This property is required. double - Absolute threshold
- Degradation
Percent This property is required. double - Relative threshold
- Degradation
Milliseconds This property is required. float64 - Absolute threshold
- Degradation
Percent This property is required. float64 - Relative threshold
- degradation
Milliseconds This property is required. Double - Absolute threshold
- degradation
Percent This property is required. Double - Relative threshold
- degradation
Milliseconds This property is required. number - Absolute threshold
- degradation
Percent This property is required. number - Relative threshold
- degradation_
milliseconds This property is required. float - Absolute threshold
- degradation_
percent This property is required. float - Relative threshold
- degradation
Milliseconds This property is required. Number - Absolute threshold
- degradation
Percent This property is required. Number - Relative threshold
ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowest, ServiceAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs
- Slowest
Degradation Milliseconds This property is required. double - Absolute threshold
- Slowest
Degradation Percent This property is required. double - Relative threshold
- Slowest
Degradation Milliseconds This property is required. float64 - Absolute threshold
- Slowest
Degradation Percent This property is required. float64 - Relative threshold
- slowest
Degradation Milliseconds This property is required. Double - Absolute threshold
- slowest
Degradation Percent This property is required. Double - Relative threshold
- slowest
Degradation Milliseconds This property is required. number - Absolute threshold
- slowest
Degradation Percent This property is required. number - Relative threshold
- slowest_
degradation_ milliseconds This property is required. float - Absolute threshold
- slowest_
degradation_ percent This property is required. float - Relative threshold
- slowest
Degradation Milliseconds This property is required. Number - Absolute threshold
- slowest
Degradation Percent This property is required. Number - Relative threshold
ServiceAnomaliesV2ResponseTimeFixedDetection, ServiceAnomaliesV2ResponseTimeFixedDetectionArgs
- Over
Alerting Protection This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- Response
Time All This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold:
- Response
Time Slowest This property is required. Pulumiverse.Dynatrace. Inputs. Service Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- Sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- Over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- Response
Time All This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold:
- Response
Time Slowest This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- Sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response
Time All This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold:
- response
Time Slowest This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- sensitivity
This property is required. String - Possible Values:
High
,Low
,Medium
- over
Alerting Protection This property is required. ServiceAnomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response
Time All This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold:
- response
Time Slowest This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- sensitivity
This property is required. string - Possible Values:
High
,Low
,Medium
- over_
alerting_ protection This property is required. ServiceAnomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response_
time_ all This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold:
- response_
time_ slowest This property is required. ServiceAnomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- sensitivity
This property is required. str - Possible Values:
High
,Low
,Medium
- over
Alerting Protection This property is required. Property Map - Avoid over-alerting
- response
Time All This property is required. Property Map - Alert if the median response time of all requests degrades beyond this threshold:
- response
Time Slowest This property is required. Property Map - Alert if the response time of the slowest 10% of requests degrades beyond this threshold:
- sensitivity
This property is required. String - Possible Values:
High
,Low
,Medium
ServiceAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtection, ServiceAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. double - Only alert if there are at least
- Minutes
Abnormal State This property is required. int - Only alert if the abnormal state remains for at least
- Requests
Per Minute This property is required. float64 - Only alert if there are at least
- minutes
Abnormal State This property is required. Integer - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Double - Only alert if there are at least
- minutes
Abnormal State This property is required. number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. number - Only alert if there are at least
- minutes_
abnormal_ state This property is required. int - Only alert if the abnormal state remains for at least
- requests_
per_ minute This property is required. float - Only alert if there are at least
- minutes
Abnormal State This property is required. Number - Only alert if the abnormal state remains for at least
- requests
Per Minute This property is required. Number - Only alert if there are at least
ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeAll, ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs
- Degradation
Milliseconds This property is required. double - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
- Degradation
Milliseconds This property is required. float64 - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
- degradation
Milliseconds This property is required. Double - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
- degradation
Milliseconds This property is required. number - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
- degradation_
milliseconds This property is required. float - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
- degradation
Milliseconds This property is required. Number - Alert if the response time degrades beyond this many ms within an observation period of 5 minutes
ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowest, ServiceAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs
- Slowest
Degradation Milliseconds This property is required. double - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
- Slowest
Degradation Milliseconds This property is required. float64 - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
- slowest
Degradation Milliseconds This property is required. Double - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
- slowest
Degradation Milliseconds This property is required. number - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
- slowest_
degradation_ milliseconds This property is required. float - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
- slowest
Degradation Milliseconds This property is required. Number - Alert if the response time of the slowest 10% degrades beyond this many ms within an observation period of 5 minutes
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.