1. Packages
  2. Dynatrace
  3. API Docs
  4. ApplicationAnomalies
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

dynatrace.ApplicationAnomalies

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

    Create ApplicationAnomalies Resource

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

    Constructor syntax

    new ApplicationAnomalies(name: string, args?: ApplicationAnomaliesArgs, opts?: CustomResourceOptions);
    @overload
    def ApplicationAnomalies(resource_name: str,
                             args: Optional[ApplicationAnomaliesArgs] = None,
                             opts: Optional[ResourceOptions] = None)
    
    @overload
    def ApplicationAnomalies(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             failure_rate: Optional[ApplicationAnomaliesFailureRateArgs] = None,
                             response_time: Optional[ApplicationAnomaliesResponseTimeArgs] = None,
                             traffic: Optional[ApplicationAnomaliesTrafficArgs] = None)
    func NewApplicationAnomalies(ctx *Context, name string, args *ApplicationAnomaliesArgs, opts ...ResourceOption) (*ApplicationAnomalies, error)
    public ApplicationAnomalies(string name, ApplicationAnomaliesArgs? args = null, CustomResourceOptions? opts = null)
    public ApplicationAnomalies(String name, ApplicationAnomaliesArgs args)
    public ApplicationAnomalies(String name, ApplicationAnomaliesArgs args, CustomResourceOptions options)
    
    type: dynatrace:ApplicationAnomalies
    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 ApplicationAnomaliesArgs
    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 ApplicationAnomaliesArgs
    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 ApplicationAnomaliesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ApplicationAnomaliesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ApplicationAnomaliesArgs
    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 applicationAnomaliesResource = new Dynatrace.ApplicationAnomalies("applicationAnomaliesResource", new()
    {
        FailureRate = new Dynatrace.Inputs.ApplicationAnomaliesFailureRateArgs
        {
            Auto = new Dynatrace.Inputs.ApplicationAnomaliesFailureRateAutoArgs
            {
                Absolute = 0,
                Relative = 0,
                Unknowns = "string",
            },
            Thresholds = new Dynatrace.Inputs.ApplicationAnomaliesFailureRateThresholdsArgs
            {
                Sensitivity = "string",
                Threshold = 0,
                Unknowns = "string",
            },
        },
        ResponseTime = new Dynatrace.Inputs.ApplicationAnomaliesResponseTimeArgs
        {
            Auto = new Dynatrace.Inputs.ApplicationAnomaliesResponseTimeAutoArgs
            {
                Load = "string",
                Milliseconds = 0,
                Percent = 0,
                SlowestMilliseconds = 0,
                SlowestPercent = 0,
                Unknowns = "string",
            },
            Thresholds = new Dynatrace.Inputs.ApplicationAnomaliesResponseTimeThresholdsArgs
            {
                Load = "string",
                Milliseconds = 0,
                Sensitivity = "string",
                SlowestMilliseconds = 0,
                Unknowns = "string",
            },
        },
        Traffic = new Dynatrace.Inputs.ApplicationAnomaliesTrafficArgs
        {
            Drops = new Dynatrace.Inputs.ApplicationAnomaliesTrafficDropsArgs
            {
                Enabled = false,
                Percent = 0,
            },
            Spikes = new Dynatrace.Inputs.ApplicationAnomaliesTrafficSpikesArgs
            {
                Enabled = false,
                Percent = 0,
            },
        },
    });
    
    example, err := dynatrace.NewApplicationAnomalies(ctx, "applicationAnomaliesResource", &dynatrace.ApplicationAnomaliesArgs{
    	FailureRate: &dynatrace.ApplicationAnomaliesFailureRateArgs{
    		Auto: &dynatrace.ApplicationAnomaliesFailureRateAutoArgs{
    			Absolute: pulumi.Int(0),
    			Relative: pulumi.Int(0),
    			Unknowns: pulumi.String("string"),
    		},
    		Thresholds: &dynatrace.ApplicationAnomaliesFailureRateThresholdsArgs{
    			Sensitivity: pulumi.String("string"),
    			Threshold:   pulumi.Int(0),
    			Unknowns:    pulumi.String("string"),
    		},
    	},
    	ResponseTime: &dynatrace.ApplicationAnomaliesResponseTimeArgs{
    		Auto: &dynatrace.ApplicationAnomaliesResponseTimeAutoArgs{
    			Load:                pulumi.String("string"),
    			Milliseconds:        pulumi.Int(0),
    			Percent:             pulumi.Int(0),
    			SlowestMilliseconds: pulumi.Int(0),
    			SlowestPercent:      pulumi.Int(0),
    			Unknowns:            pulumi.String("string"),
    		},
    		Thresholds: &dynatrace.ApplicationAnomaliesResponseTimeThresholdsArgs{
    			Load:                pulumi.String("string"),
    			Milliseconds:        pulumi.Int(0),
    			Sensitivity:         pulumi.String("string"),
    			SlowestMilliseconds: pulumi.Int(0),
    			Unknowns:            pulumi.String("string"),
    		},
    	},
    	Traffic: &dynatrace.ApplicationAnomaliesTrafficArgs{
    		Drops: &dynatrace.ApplicationAnomaliesTrafficDropsArgs{
    			Enabled: pulumi.Bool(false),
    			Percent: pulumi.Int(0),
    		},
    		Spikes: &dynatrace.ApplicationAnomaliesTrafficSpikesArgs{
    			Enabled: pulumi.Bool(false),
    			Percent: pulumi.Int(0),
    		},
    	},
    })
    
    var applicationAnomaliesResource = new ApplicationAnomalies("applicationAnomaliesResource", ApplicationAnomaliesArgs.builder()
        .failureRate(ApplicationAnomaliesFailureRateArgs.builder()
            .auto(ApplicationAnomaliesFailureRateAutoArgs.builder()
                .absolute(0)
                .relative(0)
                .unknowns("string")
                .build())
            .thresholds(ApplicationAnomaliesFailureRateThresholdsArgs.builder()
                .sensitivity("string")
                .threshold(0)
                .unknowns("string")
                .build())
            .build())
        .responseTime(ApplicationAnomaliesResponseTimeArgs.builder()
            .auto(ApplicationAnomaliesResponseTimeAutoArgs.builder()
                .load("string")
                .milliseconds(0)
                .percent(0)
                .slowestMilliseconds(0)
                .slowestPercent(0)
                .unknowns("string")
                .build())
            .thresholds(ApplicationAnomaliesResponseTimeThresholdsArgs.builder()
                .load("string")
                .milliseconds(0)
                .sensitivity("string")
                .slowestMilliseconds(0)
                .unknowns("string")
                .build())
            .build())
        .traffic(ApplicationAnomaliesTrafficArgs.builder()
            .drops(ApplicationAnomaliesTrafficDropsArgs.builder()
                .enabled(false)
                .percent(0)
                .build())
            .spikes(ApplicationAnomaliesTrafficSpikesArgs.builder()
                .enabled(false)
                .percent(0)
                .build())
            .build())
        .build());
    
    application_anomalies_resource = dynatrace.ApplicationAnomalies("applicationAnomaliesResource",
        failure_rate=dynatrace.ApplicationAnomaliesFailureRateArgs(
            auto=dynatrace.ApplicationAnomaliesFailureRateAutoArgs(
                absolute=0,
                relative=0,
                unknowns="string",
            ),
            thresholds=dynatrace.ApplicationAnomaliesFailureRateThresholdsArgs(
                sensitivity="string",
                threshold=0,
                unknowns="string",
            ),
        ),
        response_time=dynatrace.ApplicationAnomaliesResponseTimeArgs(
            auto=dynatrace.ApplicationAnomaliesResponseTimeAutoArgs(
                load="string",
                milliseconds=0,
                percent=0,
                slowest_milliseconds=0,
                slowest_percent=0,
                unknowns="string",
            ),
            thresholds=dynatrace.ApplicationAnomaliesResponseTimeThresholdsArgs(
                load="string",
                milliseconds=0,
                sensitivity="string",
                slowest_milliseconds=0,
                unknowns="string",
            ),
        ),
        traffic=dynatrace.ApplicationAnomaliesTrafficArgs(
            drops=dynatrace.ApplicationAnomaliesTrafficDropsArgs(
                enabled=False,
                percent=0,
            ),
            spikes=dynatrace.ApplicationAnomaliesTrafficSpikesArgs(
                enabled=False,
                percent=0,
            ),
        ))
    
    const applicationAnomaliesResource = new dynatrace.ApplicationAnomalies("applicationAnomaliesResource", {
        failureRate: {
            auto: {
                absolute: 0,
                relative: 0,
                unknowns: "string",
            },
            thresholds: {
                sensitivity: "string",
                threshold: 0,
                unknowns: "string",
            },
        },
        responseTime: {
            auto: {
                load: "string",
                milliseconds: 0,
                percent: 0,
                slowestMilliseconds: 0,
                slowestPercent: 0,
                unknowns: "string",
            },
            thresholds: {
                load: "string",
                milliseconds: 0,
                sensitivity: "string",
                slowestMilliseconds: 0,
                unknowns: "string",
            },
        },
        traffic: {
            drops: {
                enabled: false,
                percent: 0,
            },
            spikes: {
                enabled: false,
                percent: 0,
            },
        },
    });
    
    type: dynatrace:ApplicationAnomalies
    properties:
        failureRate:
            auto:
                absolute: 0
                relative: 0
                unknowns: string
            thresholds:
                sensitivity: string
                threshold: 0
                unknowns: string
        responseTime:
            auto:
                load: string
                milliseconds: 0
                percent: 0
                slowestMilliseconds: 0
                slowestPercent: 0
                unknowns: string
            thresholds:
                load: string
                milliseconds: 0
                sensitivity: string
                slowestMilliseconds: 0
                unknowns: string
        traffic:
            drops:
                enabled: false
                percent: 0
            spikes:
                enabled: false
                percent: 0
    

    ApplicationAnomalies 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 ApplicationAnomalies resource accepts the following input properties:

    FailureRate Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    ResponseTime Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    Traffic Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    FailureRate ApplicationAnomaliesFailureRateArgs
    Configuration of failure rate increase detection
    ResponseTime ApplicationAnomaliesResponseTimeArgs
    Configuration of response time degradation detection
    Traffic ApplicationAnomaliesTrafficArgs
    Configuration for anomalies regarding traffic
    failureRate ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    responseTime ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    failureRate ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    responseTime ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    failure_rate ApplicationAnomaliesFailureRateArgs
    Configuration of failure rate increase detection
    response_time ApplicationAnomaliesResponseTimeArgs
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTrafficArgs
    Configuration for anomalies regarding traffic
    failureRate Property Map
    Configuration of failure rate increase detection
    responseTime Property Map
    Configuration of response time degradation detection
    traffic Property Map
    Configuration for anomalies regarding traffic

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ApplicationAnomalies 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 ApplicationAnomalies Resource

    Get an existing ApplicationAnomalies 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?: ApplicationAnomaliesState, opts?: CustomResourceOptions): ApplicationAnomalies
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            failure_rate: Optional[ApplicationAnomaliesFailureRateArgs] = None,
            response_time: Optional[ApplicationAnomaliesResponseTimeArgs] = None,
            traffic: Optional[ApplicationAnomaliesTrafficArgs] = None) -> ApplicationAnomalies
    func GetApplicationAnomalies(ctx *Context, name string, id IDInput, state *ApplicationAnomaliesState, opts ...ResourceOption) (*ApplicationAnomalies, error)
    public static ApplicationAnomalies Get(string name, Input<string> id, ApplicationAnomaliesState? state, CustomResourceOptions? opts = null)
    public static ApplicationAnomalies get(String name, Output<String> id, ApplicationAnomaliesState 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.
    The following state arguments are supported:
    FailureRate Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    ResponseTime Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    Traffic Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    FailureRate ApplicationAnomaliesFailureRateArgs
    Configuration of failure rate increase detection
    ResponseTime ApplicationAnomaliesResponseTimeArgs
    Configuration of response time degradation detection
    Traffic ApplicationAnomaliesTrafficArgs
    Configuration for anomalies regarding traffic
    failureRate ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    responseTime ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    failureRate ApplicationAnomaliesFailureRate
    Configuration of failure rate increase detection
    responseTime ApplicationAnomaliesResponseTime
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTraffic
    Configuration for anomalies regarding traffic
    failure_rate ApplicationAnomaliesFailureRateArgs
    Configuration of failure rate increase detection
    response_time ApplicationAnomaliesResponseTimeArgs
    Configuration of response time degradation detection
    traffic ApplicationAnomaliesTrafficArgs
    Configuration for anomalies regarding traffic
    failureRate Property Map
    Configuration of failure rate increase detection
    responseTime Property Map
    Configuration of response time degradation detection
    traffic Property Map
    Configuration for anomalies regarding traffic

    Supporting Types

    ApplicationAnomaliesFailureRate, ApplicationAnomaliesFailureRateArgs

    Auto Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesFailureRateAuto
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    Thresholds Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesFailureRateThresholds
    Fixed thresholds for failure rate increase detection
    Auto ApplicationAnomaliesFailureRateAuto
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    Thresholds ApplicationAnomaliesFailureRateThresholds
    Fixed thresholds for failure rate increase detection
    auto ApplicationAnomaliesFailureRateAuto
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    thresholds ApplicationAnomaliesFailureRateThresholds
    Fixed thresholds for failure rate increase detection
    auto ApplicationAnomaliesFailureRateAuto
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    thresholds ApplicationAnomaliesFailureRateThresholds
    Fixed thresholds for failure rate increase detection
    auto ApplicationAnomaliesFailureRateAuto
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    thresholds ApplicationAnomaliesFailureRateThresholds
    Fixed thresholds for failure rate increase detection
    auto Property Map
    Parameters of failure rate increase auto-detection. Example: If the expected error rate is 1.5%, and you set an absolute increase of 1%, and a relative increase of 50%, the thresholds will be: Absolute: 1.5% + 1% = 2.5% Relative: 1.5% + 1.5% * 50% = 2.25%
    thresholds Property Map
    Fixed thresholds for failure rate increase detection

    ApplicationAnomaliesFailureRateAuto, ApplicationAnomaliesFailureRateAutoArgs

    Absolute int
    Absolute increase of failing service calls to trigger an alert, %
    Relative int
    Relative increase of failing service calls to trigger an alert, %
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    Absolute int
    Absolute increase of failing service calls to trigger an alert, %
    Relative int
    Relative increase of failing service calls to trigger an alert, %
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    absolute Integer
    Absolute increase of failing service calls to trigger an alert, %
    relative Integer
    Relative increase of failing service calls to trigger an alert, %
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider
    absolute number
    Absolute increase of failing service calls to trigger an alert, %
    relative number
    Relative increase of failing service calls to trigger an alert, %
    unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    absolute int
    Absolute increase of failing service calls to trigger an alert, %
    relative int
    Relative increase of failing service calls to trigger an alert, %
    unknowns str
    allows for configuring properties that are not explicitly supported by the current version of this provider
    absolute Number
    Absolute increase of failing service calls to trigger an alert, %
    relative Number
    Relative increase of failing service calls to trigger an alert, %
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider

    ApplicationAnomaliesFailureRateThresholds, ApplicationAnomaliesFailureRateThresholdsArgs

    Sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    Threshold int
    Failure rate during any 5-minute period to trigger an alert, %
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    Sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    Threshold int
    Failure rate during any 5-minute period to trigger an alert, %
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    sensitivity String
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    threshold Integer
    Failure rate during any 5-minute period to trigger an alert, %
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider
    sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    threshold number
    Failure rate during any 5-minute period to trigger an alert, %
    unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    sensitivity str
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    threshold int
    Failure rate during any 5-minute period to trigger an alert, %
    unknowns str
    allows for configuring properties that are not explicitly supported by the current version of this provider
    sensitivity String
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers alert
    threshold Number
    Failure rate during any 5-minute period to trigger an alert, %
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider

    ApplicationAnomaliesResponseTime, ApplicationAnomaliesResponseTimeArgs

    Auto Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesResponseTimeAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    Thresholds Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesResponseTimeThresholds
    Fixed thresholds for response time degradation detection
    Auto ApplicationAnomaliesResponseTimeAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    Thresholds ApplicationAnomaliesResponseTimeThresholds
    Fixed thresholds for response time degradation detection
    auto ApplicationAnomaliesResponseTimeAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ApplicationAnomaliesResponseTimeThresholds
    Fixed thresholds for response time degradation detection
    auto ApplicationAnomaliesResponseTimeAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ApplicationAnomaliesResponseTimeThresholds
    Fixed thresholds for response time degradation detection
    auto ApplicationAnomaliesResponseTimeAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ApplicationAnomaliesResponseTimeThresholds
    Fixed thresholds for response time degradation detection
    auto Property Map
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds Property Map
    Fixed thresholds for response time degradation detection

    ApplicationAnomaliesResponseTimeAuto, ApplicationAnomaliesResponseTimeAutoArgs

    Load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    Milliseconds int
    Alert if the response time degrades by more than X milliseconds
    Percent int
    Alert if the response time degrades by more than X %
    SlowestMilliseconds int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    SlowestPercent int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    Load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    Milliseconds int
    Alert if the response time degrades by more than X milliseconds
    Percent int
    Alert if the response time degrades by more than X %
    SlowestMilliseconds int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    SlowestPercent int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load String
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds Integer
    Alert if the response time degrades by more than X milliseconds
    percent Integer
    Alert if the response time degrades by more than X %
    slowestMilliseconds Integer
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    slowestPercent Integer
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds number
    Alert if the response time degrades by more than X milliseconds
    percent number
    Alert if the response time degrades by more than X %
    slowestMilliseconds number
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    slowestPercent number
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load str
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds int
    Alert if the response time degrades by more than X milliseconds
    percent int
    Alert if the response time degrades by more than X %
    slowest_milliseconds int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    slowest_percent int
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    unknowns str
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load String
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds Number
    Alert if the response time degrades by more than X milliseconds
    percent Number
    Alert if the response time degrades by more than X %
    slowestMilliseconds Number
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    slowestPercent Number
    Alert if the response time of the slowest 10% degrades by more than X milliseconds
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider

    ApplicationAnomaliesResponseTimeThresholds, ApplicationAnomaliesResponseTimeThresholdsArgs

    Load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    Milliseconds int
    Response time during any 5-minute period to trigger an alert, in milliseconds
    Sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    SlowestMilliseconds int
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    Load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    Milliseconds int
    Response time during any 5-minute period to trigger an alert, in milliseconds
    Sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    SlowestMilliseconds int
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    Unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load String
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds Integer
    Response time during any 5-minute period to trigger an alert, in milliseconds
    sensitivity String
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    slowestMilliseconds Integer
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load string
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds number
    Response time during any 5-minute period to trigger an alert, in milliseconds
    sensitivity string
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    slowestMilliseconds number
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    unknowns string
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load str
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds int
    Response time during any 5-minute period to trigger an alert, in milliseconds
    sensitivity str
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    slowest_milliseconds int
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    unknowns str
    allows for configuring properties that are not explicitly supported by the current version of this provider
    load String
    Minimal service load to detect response time degradation. Response time degradation of services with smaller load won't trigger alerts. Possible values are FIFTEEN_REQUESTS_PER_MINUTE, FIVE_REQUESTS_PER_MINUTE, ONE_REQUEST_PER_MINUTE and TEN_REQUESTS_PER_MINUTE
    milliseconds Number
    Response time during any 5-minute period to trigger an alert, in milliseconds
    sensitivity String
    Sensitivity of the threshold. With low sensitivity, high statistical confidence is used. Brief violations (for example, due to a surge in load) won't trigger alerts. With high sensitivity, no statistical confidence is used. Each violation triggers an alert
    slowestMilliseconds Number
    Response time of the 10% slowest during any 5-minute period to trigger an alert, in milliseconds
    unknowns String
    allows for configuring properties that are not explicitly supported by the current version of this provider

    ApplicationAnomaliesTraffic, ApplicationAnomaliesTrafficArgs

    Drops Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesTrafficDrops
    The configuration of traffic drops detection
    Spikes Pulumiverse.Dynatrace.Inputs.ApplicationAnomaliesTrafficSpikes
    The configuration of traffic spikes detection
    Drops ApplicationAnomaliesTrafficDrops
    The configuration of traffic drops detection
    Spikes ApplicationAnomaliesTrafficSpikes
    The configuration of traffic spikes detection
    drops ApplicationAnomaliesTrafficDrops
    The configuration of traffic drops detection
    spikes ApplicationAnomaliesTrafficSpikes
    The configuration of traffic spikes detection
    drops ApplicationAnomaliesTrafficDrops
    The configuration of traffic drops detection
    spikes ApplicationAnomaliesTrafficSpikes
    The configuration of traffic spikes detection
    drops ApplicationAnomaliesTrafficDrops
    The configuration of traffic drops detection
    spikes ApplicationAnomaliesTrafficSpikes
    The configuration of traffic spikes detection
    drops Property Map
    The configuration of traffic drops detection
    spikes Property Map
    The configuration of traffic spikes detection

    ApplicationAnomaliesTrafficDrops, ApplicationAnomaliesTrafficDropsArgs

    Enabled bool
    The detection is enabled (true) or disabled (false)
    Percent int
    Alert if the observed traffic is less than X % of the expected value
    Enabled bool
    The detection is enabled (true) or disabled (false)
    Percent int
    Alert if the observed traffic is less than X % of the expected value
    enabled Boolean
    The detection is enabled (true) or disabled (false)
    percent Integer
    Alert if the observed traffic is less than X % of the expected value
    enabled boolean
    The detection is enabled (true) or disabled (false)
    percent number
    Alert if the observed traffic is less than X % of the expected value
    enabled bool
    The detection is enabled (true) or disabled (false)
    percent int
    Alert if the observed traffic is less than X % of the expected value
    enabled Boolean
    The detection is enabled (true) or disabled (false)
    percent Number
    Alert if the observed traffic is less than X % of the expected value

    ApplicationAnomaliesTrafficSpikes, ApplicationAnomaliesTrafficSpikesArgs

    Enabled bool
    The detection is enabled (true) or disabled (false)
    Percent int
    Alert if the observed traffic is less than X % of the expected value
    Enabled bool
    The detection is enabled (true) or disabled (false)
    Percent int
    Alert if the observed traffic is less than X % of the expected value
    enabled Boolean
    The detection is enabled (true) or disabled (false)
    percent Integer
    Alert if the observed traffic is less than X % of the expected value
    enabled boolean
    The detection is enabled (true) or disabled (false)
    percent number
    Alert if the observed traffic is less than X % of the expected value
    enabled bool
    The detection is enabled (true) or disabled (false)
    percent int
    Alert if the observed traffic is less than X % of the expected value
    enabled Boolean
    The detection is enabled (true) or disabled (false)
    percent Number
    Alert if the observed traffic is less than X % of the expected value

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse