Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.DatabaseAnomaliesV2
Explore with Pulumi AI
Create DatabaseAnomaliesV2 Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DatabaseAnomaliesV2(name: string, args: DatabaseAnomaliesV2Args, opts?: CustomResourceOptions);
@overload
def DatabaseAnomaliesV2(resource_name: str,
args: DatabaseAnomaliesV2Args,
opts: Optional[ResourceOptions] = None)
@overload
def DatabaseAnomaliesV2(resource_name: str,
opts: Optional[ResourceOptions] = None,
database_connections: Optional[DatabaseAnomaliesV2DatabaseConnectionsArgs] = None,
failure_rate: Optional[DatabaseAnomaliesV2FailureRateArgs] = None,
load_drops: Optional[DatabaseAnomaliesV2LoadDropsArgs] = None,
load_spikes: Optional[DatabaseAnomaliesV2LoadSpikesArgs] = None,
response_time: Optional[DatabaseAnomaliesV2ResponseTimeArgs] = None,
scope: Optional[str] = None)
func NewDatabaseAnomaliesV2(ctx *Context, name string, args DatabaseAnomaliesV2Args, opts ...ResourceOption) (*DatabaseAnomaliesV2, error)
public DatabaseAnomaliesV2(string name, DatabaseAnomaliesV2Args args, CustomResourceOptions? opts = null)
public DatabaseAnomaliesV2(String name, DatabaseAnomaliesV2Args args)
public DatabaseAnomaliesV2(String name, DatabaseAnomaliesV2Args args, CustomResourceOptions options)
type: dynatrace:DatabaseAnomaliesV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DatabaseAnomaliesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DatabaseAnomaliesV2Args
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DatabaseAnomaliesV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatabaseAnomaliesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatabaseAnomaliesV2Args
- 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 databaseAnomaliesV2Resource = new Dynatrace.DatabaseAnomaliesV2("databaseAnomaliesV2Resource", new()
{
DatabaseConnections = new Dynatrace.Inputs.DatabaseAnomaliesV2DatabaseConnectionsArgs
{
Enabled = false,
MaxFailedConnects = 0,
TimePeriod = 0,
},
FailureRate = new Dynatrace.Inputs.DatabaseAnomaliesV2FailureRateArgs
{
Enabled = false,
AutoDetection = new Dynatrace.Inputs.DatabaseAnomaliesV2FailureRateAutoDetectionArgs
{
AbsoluteIncrease = 0,
OverAlertingProtection = new Dynatrace.Inputs.DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
RelativeIncrease = 0,
},
DetectionMode = "string",
FixedDetection = new Dynatrace.Inputs.DatabaseAnomaliesV2FailureRateFixedDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
Sensitivity = "string",
Threshold = 0,
},
},
LoadDrops = new Dynatrace.Inputs.DatabaseAnomaliesV2LoadDropsArgs
{
Enabled = false,
LoadDropPercent = 0,
MinutesAbnormalState = 0,
},
LoadSpikes = new Dynatrace.Inputs.DatabaseAnomaliesV2LoadSpikesArgs
{
Enabled = false,
LoadSpikePercent = 0,
MinutesAbnormalState = 0,
},
ResponseTime = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeArgs
{
Enabled = false,
AutoDetection = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeAutoDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
ResponseTimeAll = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs
{
DegradationMilliseconds = 0,
DegradationPercent = 0,
},
ResponseTimeSlowest = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs
{
SlowestDegradationMilliseconds = 0,
SlowestDegradationPercent = 0,
},
},
DetectionMode = "string",
FixedDetection = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeFixedDetectionArgs
{
OverAlertingProtection = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs
{
MinutesAbnormalState = 0,
RequestsPerMinute = 0,
},
ResponseTimeAll = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs
{
DegradationMilliseconds = 0,
},
ResponseTimeSlowest = new Dynatrace.Inputs.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs
{
SlowestDegradationMilliseconds = 0,
},
Sensitivity = "string",
},
},
Scope = "string",
});
example, err := dynatrace.NewDatabaseAnomaliesV2(ctx, "databaseAnomaliesV2Resource", &dynatrace.DatabaseAnomaliesV2Args{
DatabaseConnections: &dynatrace.DatabaseAnomaliesV2DatabaseConnectionsArgs{
Enabled: pulumi.Bool(false),
MaxFailedConnects: pulumi.Int(0),
TimePeriod: pulumi.Int(0),
},
FailureRate: &dynatrace.DatabaseAnomaliesV2FailureRateArgs{
Enabled: pulumi.Bool(false),
AutoDetection: &dynatrace.DatabaseAnomaliesV2FailureRateAutoDetectionArgs{
AbsoluteIncrease: pulumi.Float64(0),
OverAlertingProtection: &dynatrace.DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
RelativeIncrease: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
FixedDetection: &dynatrace.DatabaseAnomaliesV2FailureRateFixedDetectionArgs{
OverAlertingProtection: &dynatrace.DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
Sensitivity: pulumi.String("string"),
Threshold: pulumi.Float64(0),
},
},
LoadDrops: &dynatrace.DatabaseAnomaliesV2LoadDropsArgs{
Enabled: pulumi.Bool(false),
LoadDropPercent: pulumi.Float64(0),
MinutesAbnormalState: pulumi.Int(0),
},
LoadSpikes: &dynatrace.DatabaseAnomaliesV2LoadSpikesArgs{
Enabled: pulumi.Bool(false),
LoadSpikePercent: pulumi.Float64(0),
MinutesAbnormalState: pulumi.Int(0),
},
ResponseTime: &dynatrace.DatabaseAnomaliesV2ResponseTimeArgs{
Enabled: pulumi.Bool(false),
AutoDetection: &dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionArgs{
OverAlertingProtection: &dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
ResponseTimeAll: &dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs{
DegradationMilliseconds: pulumi.Float64(0),
DegradationPercent: pulumi.Float64(0),
},
ResponseTimeSlowest: &dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs{
SlowestDegradationMilliseconds: pulumi.Float64(0),
SlowestDegradationPercent: pulumi.Float64(0),
},
},
DetectionMode: pulumi.String("string"),
FixedDetection: &dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionArgs{
OverAlertingProtection: &dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs{
MinutesAbnormalState: pulumi.Int(0),
RequestsPerMinute: pulumi.Float64(0),
},
ResponseTimeAll: &dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs{
DegradationMilliseconds: pulumi.Float64(0),
},
ResponseTimeSlowest: &dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs{
SlowestDegradationMilliseconds: pulumi.Float64(0),
},
Sensitivity: pulumi.String("string"),
},
},
Scope: pulumi.String("string"),
})
var databaseAnomaliesV2Resource = new DatabaseAnomaliesV2("databaseAnomaliesV2Resource", DatabaseAnomaliesV2Args.builder()
.databaseConnections(DatabaseAnomaliesV2DatabaseConnectionsArgs.builder()
.enabled(false)
.maxFailedConnects(0)
.timePeriod(0)
.build())
.failureRate(DatabaseAnomaliesV2FailureRateArgs.builder()
.enabled(false)
.autoDetection(DatabaseAnomaliesV2FailureRateAutoDetectionArgs.builder()
.absoluteIncrease(0)
.overAlertingProtection(DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.relativeIncrease(0)
.build())
.detectionMode("string")
.fixedDetection(DatabaseAnomaliesV2FailureRateFixedDetectionArgs.builder()
.overAlertingProtection(DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.sensitivity("string")
.threshold(0)
.build())
.build())
.loadDrops(DatabaseAnomaliesV2LoadDropsArgs.builder()
.enabled(false)
.loadDropPercent(0)
.minutesAbnormalState(0)
.build())
.loadSpikes(DatabaseAnomaliesV2LoadSpikesArgs.builder()
.enabled(false)
.loadSpikePercent(0)
.minutesAbnormalState(0)
.build())
.responseTime(DatabaseAnomaliesV2ResponseTimeArgs.builder()
.enabled(false)
.autoDetection(DatabaseAnomaliesV2ResponseTimeAutoDetectionArgs.builder()
.overAlertingProtection(DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.responseTimeAll(DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs.builder()
.degradationMilliseconds(0)
.degradationPercent(0)
.build())
.responseTimeSlowest(DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs.builder()
.slowestDegradationMilliseconds(0)
.slowestDegradationPercent(0)
.build())
.build())
.detectionMode("string")
.fixedDetection(DatabaseAnomaliesV2ResponseTimeFixedDetectionArgs.builder()
.overAlertingProtection(DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs.builder()
.minutesAbnormalState(0)
.requestsPerMinute(0)
.build())
.responseTimeAll(DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs.builder()
.degradationMilliseconds(0)
.build())
.responseTimeSlowest(DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs.builder()
.slowestDegradationMilliseconds(0)
.build())
.sensitivity("string")
.build())
.build())
.scope("string")
.build());
database_anomalies_v2_resource = dynatrace.DatabaseAnomaliesV2("databaseAnomaliesV2Resource",
database_connections=dynatrace.DatabaseAnomaliesV2DatabaseConnectionsArgs(
enabled=False,
max_failed_connects=0,
time_period=0,
),
failure_rate=dynatrace.DatabaseAnomaliesV2FailureRateArgs(
enabled=False,
auto_detection=dynatrace.DatabaseAnomaliesV2FailureRateAutoDetectionArgs(
absolute_increase=0,
over_alerting_protection=dynatrace.DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs(
minutes_abnormal_state=0,
requests_per_minute=0,
),
relative_increase=0,
),
detection_mode="string",
fixed_detection=dynatrace.DatabaseAnomaliesV2FailureRateFixedDetectionArgs(
over_alerting_protection=dynatrace.DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs(
minutes_abnormal_state=0,
requests_per_minute=0,
),
sensitivity="string",
threshold=0,
),
),
load_drops=dynatrace.DatabaseAnomaliesV2LoadDropsArgs(
enabled=False,
load_drop_percent=0,
minutes_abnormal_state=0,
),
load_spikes=dynatrace.DatabaseAnomaliesV2LoadSpikesArgs(
enabled=False,
load_spike_percent=0,
minutes_abnormal_state=0,
),
response_time=dynatrace.DatabaseAnomaliesV2ResponseTimeArgs(
enabled=False,
auto_detection=dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionArgs(
over_alerting_protection=dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs(
minutes_abnormal_state=0,
requests_per_minute=0,
),
response_time_all=dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs(
degradation_milliseconds=0,
degradation_percent=0,
),
response_time_slowest=dynatrace.DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs(
slowest_degradation_milliseconds=0,
slowest_degradation_percent=0,
),
),
detection_mode="string",
fixed_detection=dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionArgs(
over_alerting_protection=dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs(
minutes_abnormal_state=0,
requests_per_minute=0,
),
response_time_all=dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs(
degradation_milliseconds=0,
),
response_time_slowest=dynatrace.DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs(
slowest_degradation_milliseconds=0,
),
sensitivity="string",
),
),
scope="string")
const databaseAnomaliesV2Resource = new dynatrace.DatabaseAnomaliesV2("databaseAnomaliesV2Resource", {
databaseConnections: {
enabled: false,
maxFailedConnects: 0,
timePeriod: 0,
},
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:DatabaseAnomaliesV2
properties:
databaseConnections:
enabled: false
maxFailedConnects: 0
timePeriod: 0
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
DatabaseAnomaliesV2 Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DatabaseAnomaliesV2 resource accepts the following input properties:
- Database
Connections Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- Failure
Rate Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Failure Rate - Failure rate
- Load
Drops Pulumiverse.Dynatrace. Inputs. Database 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. Database 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. Database Anomalies V2Response Time - Response time
- Scope string
- The scope for the database anomaly detection
- Database
Connections DatabaseAnomalies V2Database Connections Args - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- Failure
Rate DatabaseAnomalies V2Failure Rate Args - Failure rate
- Load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- Response
Time DatabaseAnomalies V2Response Time Args - Response time
- Scope string
- The scope for the database anomaly detection
- database
Connections DatabaseAnomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure
Rate DatabaseAnomalies V2Failure Rate - Failure rate
- load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response
Time DatabaseAnomalies V2Response Time - Response time
- scope String
- The scope for the database anomaly detection
- database
Connections DatabaseAnomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure
Rate DatabaseAnomalies V2Failure Rate - Failure rate
- load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response
Time DatabaseAnomalies V2Response Time - Response time
- scope string
- The scope for the database anomaly detection
- database_
connections DatabaseAnomalies V2Database Connections Args - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure_
rate DatabaseAnomalies V2Failure Rate Args - Failure rate
- load_
drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response_
time DatabaseAnomalies V2Response Time Args - Response time
- scope str
- The scope for the database anomaly detection
- database
Connections Property Map - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- 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 String
- The scope for the database anomaly detection
Outputs
All input properties are implicitly available as output properties. Additionally, the DatabaseAnomaliesV2 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 DatabaseAnomaliesV2 Resource
Get an existing DatabaseAnomaliesV2 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?: DatabaseAnomaliesV2State, opts?: CustomResourceOptions): DatabaseAnomaliesV2
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
database_connections: Optional[DatabaseAnomaliesV2DatabaseConnectionsArgs] = None,
failure_rate: Optional[DatabaseAnomaliesV2FailureRateArgs] = None,
load_drops: Optional[DatabaseAnomaliesV2LoadDropsArgs] = None,
load_spikes: Optional[DatabaseAnomaliesV2LoadSpikesArgs] = None,
response_time: Optional[DatabaseAnomaliesV2ResponseTimeArgs] = None,
scope: Optional[str] = None) -> DatabaseAnomaliesV2
func GetDatabaseAnomaliesV2(ctx *Context, name string, id IDInput, state *DatabaseAnomaliesV2State, opts ...ResourceOption) (*DatabaseAnomaliesV2, error)
public static DatabaseAnomaliesV2 Get(string name, Input<string> id, DatabaseAnomaliesV2State? state, CustomResourceOptions? opts = null)
public static DatabaseAnomaliesV2 get(String name, Output<String> id, DatabaseAnomaliesV2State state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Database
Connections Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- Failure
Rate Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Failure Rate - Failure rate
- Load
Drops Pulumiverse.Dynatrace. Inputs. Database 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. Database 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. Database Anomalies V2Response Time - Response time
- Scope string
- The scope for the database anomaly detection
- Database
Connections DatabaseAnomalies V2Database Connections Args - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- Failure
Rate DatabaseAnomalies V2Failure Rate Args - Failure rate
- Load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- Response
Time DatabaseAnomalies V2Response Time Args - Response time
- Scope string
- The scope for the database anomaly detection
- database
Connections DatabaseAnomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure
Rate DatabaseAnomalies V2Failure Rate - Failure rate
- load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response
Time DatabaseAnomalies V2Response Time - Response time
- scope String
- The scope for the database anomaly detection
- database
Connections DatabaseAnomalies V2Database Connections - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure
Rate DatabaseAnomalies V2Failure Rate - Failure rate
- load
Drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response
Time DatabaseAnomalies V2Response Time - Response time
- scope string
- The scope for the database anomaly detection
- database_
connections DatabaseAnomalies V2Database Connections Args - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- failure_
rate DatabaseAnomalies V2Failure Rate Args - Failure rate
- load_
drops DatabaseAnomalies 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 DatabaseAnomalies V2Load Spikes Args - Alert if the observed load exceeds the expected load by a specified margin for a specified amount of time.
- response_
time DatabaseAnomalies V2Response Time Args - Response time
- scope str
- The scope for the database anomaly detection
- database
Connections Property Map - Alert if the number of failed database connects within the specified time exceeds the specified absolute threshold:
- 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 String
- The scope for the database anomaly detection
Supporting Types
DatabaseAnomaliesV2DatabaseConnections, DatabaseAnomaliesV2DatabaseConnectionsArgs
- Enabled bool
- Detect failed database connects
- Max
Failed intConnects - Threshold
- Time
Period int - Time span
- Enabled bool
- Detect failed database connects
- Max
Failed intConnects - Threshold
- Time
Period int - Time span
- enabled Boolean
- Detect failed database connects
- max
Failed IntegerConnects - Threshold
- time
Period Integer - Time span
- enabled boolean
- Detect failed database connects
- max
Failed numberConnects - Threshold
- time
Period number - Time span
- enabled bool
- Detect failed database connects
- max_
failed_ intconnects - Threshold
- time_
period int - Time span
- enabled Boolean
- Detect failed database connects
- max
Failed NumberConnects - Threshold
- time
Period Number - Time span
DatabaseAnomaliesV2FailureRate, DatabaseAnomaliesV2FailureRateArgs
- Enabled bool
- Detect increases in failure rate
- Auto
Detection Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- Detection
Mode string - Detection mode for increases in failure rate
- Fixed
Detection Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- Enabled bool
- Detect increases in failure rate
- Auto
Detection DatabaseAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- Detection
Mode string - Detection mode for increases in failure rate
- Fixed
Detection DatabaseAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled Boolean
- Detect increases in failure rate
- auto
Detection DatabaseAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode String - Detection mode for increases in failure rate
- fixed
Detection DatabaseAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled boolean
- Detect increases in failure rate
- auto
Detection DatabaseAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode string - Detection mode for increases in failure rate
- fixed
Detection DatabaseAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled bool
- Detect increases in failure rate
- auto_
detection DatabaseAnomalies V2Failure Rate Auto Detection - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection_
mode str - Detection mode for increases in failure rate
- fixed_
detection DatabaseAnomalies V2Failure Rate Fixed Detection - Alert if a given failure rate is exceeded during any 5-minute-period
- enabled Boolean
- Detect increases in failure rate
- auto
Detection Property Map - Alert if the percentage of failing service calls increases by both the absolute and relative thresholds:
- detection
Mode String - Detection mode for increases in failure rate
- fixed
Detection Property Map - Alert if a given failure rate is exceeded during any 5-minute-period
DatabaseAnomaliesV2FailureRateAutoDetection, DatabaseAnomaliesV2FailureRateAutoDetectionArgs
- Absolute
Increase double - Absolute threshold
- Over
Alerting Pulumiverse.Protection Dynatrace. Inputs. Database Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- Relative
Increase double - Relative threshold
- Absolute
Increase float64 - Absolute threshold
- Over
Alerting DatabaseProtection Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- Relative
Increase float64 - Relative threshold
- absolute
Increase Double - Absolute threshold
- over
Alerting DatabaseProtection Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative
Increase Double - Relative threshold
- absolute
Increase number - Absolute threshold
- over
Alerting DatabaseProtection Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative
Increase number - Relative threshold
- absolute_
increase float - Absolute threshold
- over_
alerting_ Databaseprotection Anomalies V2Failure Rate Auto Detection Over Alerting Protection - Avoid over-alerting
- relative_
increase float - Relative threshold
- absolute
Increase Number - Absolute threshold
- over
Alerting Property MapProtection - Avoid over-alerting
- relative
Increase Number - Relative threshold
DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtection, DatabaseAnomaliesV2FailureRateAutoDetectionOverAlertingProtectionArgs
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per doubleMinute - Only alert if there are at least
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per float64Minute - Only alert if there are at least
- minutes
Abnormal IntegerState - Only alert if the abnormal state remains for at least
- requests
Per DoubleMinute - Only alert if there are at least
- minutes
Abnormal numberState - Only alert if the abnormal state remains for at least
- requests
Per numberMinute - Only alert if there are at least
- minutes_
abnormal_ intstate - Only alert if the abnormal state remains for at least
- requests_
per_ floatminute - Only alert if there are at least
- minutes
Abnormal NumberState - Only alert if the abnormal state remains for at least
- requests
Per NumberMinute - Only alert if there are at least
DatabaseAnomaliesV2FailureRateFixedDetection, DatabaseAnomaliesV2FailureRateFixedDetectionArgs
- Over
Alerting Pulumiverse.Protection Dynatrace. Inputs. Database Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- Sensitivity string
- no documentation available
- Threshold double
- no documentation available
- Over
Alerting DatabaseProtection Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- Sensitivity string
- no documentation available
- Threshold float64
- no documentation available
- over
Alerting DatabaseProtection Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity String
- no documentation available
- threshold Double
- no documentation available
- over
Alerting DatabaseProtection Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity string
- no documentation available
- threshold number
- no documentation available
- over_
alerting_ Databaseprotection Anomalies V2Failure Rate Fixed Detection Over Alerting Protection - Avoid over-alerting
- sensitivity str
- no documentation available
- threshold float
- no documentation available
- over
Alerting Property MapProtection - Avoid over-alerting
- sensitivity String
- no documentation available
- threshold Number
- no documentation available
DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtection, DatabaseAnomaliesV2FailureRateFixedDetectionOverAlertingProtectionArgs
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per doubleMinute - Only alert if there are at least
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per float64Minute - Only alert if there are at least
- minutes
Abnormal IntegerState - Only alert if the abnormal state remains for at least
- requests
Per DoubleMinute - Only alert if there are at least
- minutes
Abnormal numberState - Only alert if the abnormal state remains for at least
- requests
Per numberMinute - Only alert if there are at least
- minutes_
abnormal_ intstate - Only alert if the abnormal state remains for at least
- requests_
per_ floatminute - Only alert if there are at least
- minutes
Abnormal NumberState - Only alert if the abnormal state remains for at least
- requests
Per NumberMinute - Only alert if there are at least
DatabaseAnomaliesV2LoadDrops, DatabaseAnomaliesV2LoadDropsArgs
- Enabled bool
- Detect service load drops
- Load
Drop doublePercent - Threshold
- Minutes
Abnormal intState - Time span
- Enabled bool
- Detect service load drops
- Load
Drop float64Percent - Threshold
- Minutes
Abnormal intState - Time span
- enabled Boolean
- Detect service load drops
- load
Drop DoublePercent - Threshold
- minutes
Abnormal IntegerState - Time span
- enabled boolean
- Detect service load drops
- load
Drop numberPercent - Threshold
- minutes
Abnormal numberState - Time span
- enabled bool
- Detect service load drops
- load_
drop_ floatpercent - Threshold
- minutes_
abnormal_ intstate - Time span
- enabled Boolean
- Detect service load drops
- load
Drop NumberPercent - Threshold
- minutes
Abnormal NumberState - Time span
DatabaseAnomaliesV2LoadSpikes, DatabaseAnomaliesV2LoadSpikesArgs
- Enabled bool
- Detect service load spikes
- Load
Spike doublePercent - Threshold
- Minutes
Abnormal intState - Time span
- Enabled bool
- Detect service load spikes
- Load
Spike float64Percent - Threshold
- Minutes
Abnormal intState - Time span
- enabled Boolean
- Detect service load spikes
- load
Spike DoublePercent - Threshold
- minutes
Abnormal IntegerState - Time span
- enabled boolean
- Detect service load spikes
- load
Spike numberPercent - Threshold
- minutes
Abnormal numberState - Time span
- enabled bool
- Detect service load spikes
- load_
spike_ floatpercent - Threshold
- minutes_
abnormal_ intstate - Time span
- enabled Boolean
- Detect service load spikes
- load
Spike NumberPercent - Threshold
- minutes
Abnormal NumberState - Time span
DatabaseAnomaliesV2ResponseTime, DatabaseAnomaliesV2ResponseTimeArgs
- Enabled bool
- Detect response time degradations
- Auto
Detection Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Response Time Auto Detection - no documentation available
- Detection
Mode string - Detection mode for response time degradations
- Fixed
Detection Pulumiverse.Dynatrace. Inputs. Database Anomalies V2Response Time Fixed Detection - no documentation available
- Enabled bool
- Detect response time degradations
- Auto
Detection DatabaseAnomalies V2Response Time Auto Detection - no documentation available
- Detection
Mode string - Detection mode for response time degradations
- Fixed
Detection DatabaseAnomalies V2Response Time Fixed Detection - no documentation available
- enabled Boolean
- Detect response time degradations
- auto
Detection DatabaseAnomalies V2Response Time Auto Detection - no documentation available
- detection
Mode String - Detection mode for response time degradations
- fixed
Detection DatabaseAnomalies V2Response Time Fixed Detection - no documentation available
- enabled boolean
- Detect response time degradations
- auto
Detection DatabaseAnomalies V2Response Time Auto Detection - no documentation available
- detection
Mode string - Detection mode for response time degradations
- fixed
Detection DatabaseAnomalies V2Response Time Fixed Detection - no documentation available
- enabled bool
- Detect response time degradations
- auto_
detection DatabaseAnomalies V2Response Time Auto Detection - no documentation available
- detection_
mode str - Detection mode for response time degradations
- fixed_
detection DatabaseAnomalies V2Response Time Fixed Detection - no documentation available
- enabled Boolean
- Detect response time degradations
- auto
Detection Property Map - no documentation available
- detection
Mode String - Detection mode for response time degradations
- fixed
Detection Property Map - no documentation available
DatabaseAnomaliesV2ResponseTimeAutoDetection, DatabaseAnomaliesV2ResponseTimeAutoDetectionArgs
- Over
Alerting Pulumiverse.Protection Dynatrace. Inputs. Database Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- Response
Time Pulumiverse.All Dynatrace. Inputs. Database 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 Pulumiverse.Slowest Dynatrace. Inputs. Database 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 DatabaseProtection Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- Response
Time DatabaseAll 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 DatabaseSlowest 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 DatabaseProtection Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response
Time DatabaseAll 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 DatabaseSlowest 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 DatabaseProtection Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response
Time DatabaseAll 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 DatabaseSlowest 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_ Databaseprotection Anomalies V2Response Time Auto Detection Over Alerting Protection - Avoid over-alerting
- response_
time_ Databaseall 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_ Databaseslowest 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 Property MapProtection - Avoid over-alerting
- response
Time Property MapAll - Alert if the median response time of all requests degrades beyond both the absolute and relative thresholds:
- response
Time Property MapSlowest - Alert if the response time of the slowest 10% of requests degrades beyond both the absolute and relative thresholds:
DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtection, DatabaseAnomaliesV2ResponseTimeAutoDetectionOverAlertingProtectionArgs
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per doubleMinute - Only alert if there are at least
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per float64Minute - Only alert if there are at least
- minutes
Abnormal IntegerState - Only alert if the abnormal state remains for at least
- requests
Per DoubleMinute - Only alert if there are at least
- minutes
Abnormal numberState - Only alert if the abnormal state remains for at least
- requests
Per numberMinute - Only alert if there are at least
- minutes_
abnormal_ intstate - Only alert if the abnormal state remains for at least
- requests_
per_ floatminute - Only alert if there are at least
- minutes
Abnormal NumberState - Only alert if the abnormal state remains for at least
- requests
Per NumberMinute - Only alert if there are at least
DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAll, DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeAllArgs
- Degradation
Milliseconds double - Absolute threshold
- Degradation
Percent double - Relative threshold
- Degradation
Milliseconds float64 - Absolute threshold
- Degradation
Percent float64 - Relative threshold
- degradation
Milliseconds Double - Absolute threshold
- degradation
Percent Double - Relative threshold
- degradation
Milliseconds number - Absolute threshold
- degradation
Percent number - Relative threshold
- degradation_
milliseconds float - Absolute threshold
- degradation_
percent float - Relative threshold
- degradation
Milliseconds Number - Absolute threshold
- degradation
Percent Number - Relative threshold
DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowest, DatabaseAnomaliesV2ResponseTimeAutoDetectionResponseTimeSlowestArgs
- Slowest
Degradation doubleMilliseconds - Absolute threshold
- Slowest
Degradation doublePercent - Relative threshold
- Slowest
Degradation float64Milliseconds - Absolute threshold
- Slowest
Degradation float64Percent - Relative threshold
- slowest
Degradation DoubleMilliseconds - Absolute threshold
- slowest
Degradation DoublePercent - Relative threshold
- slowest
Degradation numberMilliseconds - Absolute threshold
- slowest
Degradation numberPercent - Relative threshold
- slowest_
degradation_ floatmilliseconds - Absolute threshold
- slowest_
degradation_ floatpercent - Relative threshold
- slowest
Degradation NumberMilliseconds - Absolute threshold
- slowest
Degradation NumberPercent - Relative threshold
DatabaseAnomaliesV2ResponseTimeFixedDetection, DatabaseAnomaliesV2ResponseTimeFixedDetectionArgs
- Over
Alerting Pulumiverse.Protection Dynatrace. Inputs. Database Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- Response
Time Pulumiverse.All Dynatrace. Inputs. Database Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- Response
Time Pulumiverse.Slowest Dynatrace. Inputs. Database Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- Sensitivity string
- no documentation available
- Over
Alerting DatabaseProtection Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- Response
Time DatabaseAll Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- Response
Time DatabaseSlowest Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- Sensitivity string
- no documentation available
- over
Alerting DatabaseProtection Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response
Time DatabaseAll Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- response
Time DatabaseSlowest Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- sensitivity String
- no documentation available
- over
Alerting DatabaseProtection Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response
Time DatabaseAll Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- response
Time DatabaseSlowest Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- sensitivity string
- no documentation available
- over_
alerting_ Databaseprotection Anomalies V2Response Time Fixed Detection Over Alerting Protection - Avoid over-alerting
- response_
time_ Databaseall Anomalies V2Response Time Fixed Detection Response Time All - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- response_
time_ Databaseslowest Anomalies V2Response Time Fixed Detection Response Time Slowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- sensitivity str
- no documentation available
- over
Alerting Property MapProtection - Avoid over-alerting
- response
Time Property MapAll - Alert if the median response time of all requests degrades beyond this threshold within an observation period of 5 minutes:
- response
Time Property MapSlowest - Alert if the response time of the slowest 10% of requests degrades beyond this threshold within an observation period of 5 minutes:
- sensitivity String
- no documentation available
DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtection, DatabaseAnomaliesV2ResponseTimeFixedDetectionOverAlertingProtectionArgs
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per doubleMinute - Only alert if there are at least
- Minutes
Abnormal intState - Only alert if the abnormal state remains for at least
- Requests
Per float64Minute - Only alert if there are at least
- minutes
Abnormal IntegerState - Only alert if the abnormal state remains for at least
- requests
Per DoubleMinute - Only alert if there are at least
- minutes
Abnormal numberState - Only alert if the abnormal state remains for at least
- requests
Per numberMinute - Only alert if there are at least
- minutes_
abnormal_ intstate - Only alert if the abnormal state remains for at least
- requests_
per_ floatminute - Only alert if there are at least
- minutes
Abnormal NumberState - Only alert if the abnormal state remains for at least
- requests
Per NumberMinute - Only alert if there are at least
DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAll, DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeAllArgs
- Degradation
Milliseconds double - Threshold
- Degradation
Milliseconds float64 - Threshold
- degradation
Milliseconds Double - Threshold
- degradation
Milliseconds number - Threshold
- degradation_
milliseconds float - Threshold
- degradation
Milliseconds Number - Threshold
DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowest, DatabaseAnomaliesV2ResponseTimeFixedDetectionResponseTimeSlowestArgs
- Slowest
Degradation doubleMilliseconds - Threshold
- Slowest
Degradation float64Milliseconds - Threshold
- slowest
Degradation DoubleMilliseconds - Threshold
- slowest
Degradation numberMilliseconds - Threshold
- slowest_
degradation_ floatmilliseconds - Threshold
- slowest
Degradation NumberMilliseconds - Threshold
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.