1. Packages
  2. Dynatrace
  3. API Docs
  4. ServiceAnomalies
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.ServiceAnomalies

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create ServiceAnomalies Resource

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

    Constructor syntax

    new ServiceAnomalies(name: string, args?: ServiceAnomaliesArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceAnomalies(resource_name: str,
                         args: Optional[ServiceAnomaliesArgs] = None,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceAnomalies(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         failure_rates: Optional[ServiceAnomaliesFailureRatesArgs] = None,
                         load: Optional[ServiceAnomaliesLoadArgs] = None,
                         load_drops: Optional[ServiceAnomaliesLoadDropsArgs] = None,
                         response_times: Optional[ServiceAnomaliesResponseTimesArgs] = None)
    func NewServiceAnomalies(ctx *Context, name string, args *ServiceAnomaliesArgs, opts ...ResourceOption) (*ServiceAnomalies, error)
    public ServiceAnomalies(string name, ServiceAnomaliesArgs? args = null, CustomResourceOptions? opts = null)
    public ServiceAnomalies(String name, ServiceAnomaliesArgs args)
    public ServiceAnomalies(String name, ServiceAnomaliesArgs args, CustomResourceOptions options)
    
    type: dynatrace:ServiceAnomalies
    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 ServiceAnomaliesArgs
    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 ServiceAnomaliesArgs
    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 ServiceAnomaliesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceAnomaliesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceAnomaliesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceAnomaliesResource = new Dynatrace.ServiceAnomalies("serviceAnomaliesResource", new()
    {
        FailureRates = new Dynatrace.Inputs.ServiceAnomaliesFailureRatesArgs
        {
            Auto = new Dynatrace.Inputs.ServiceAnomaliesFailureRatesAutoArgs
            {
                Absolute = 0,
                Relative = 0,
                Unknowns = "string",
            },
            Thresholds = new Dynatrace.Inputs.ServiceAnomaliesFailureRatesThresholdsArgs
            {
                Sensitivity = "string",
                Threshold = 0,
                Unknowns = "string",
            },
        },
        Load = new Dynatrace.Inputs.ServiceAnomaliesLoadArgs
        {
            Drops = new Dynatrace.Inputs.ServiceAnomaliesLoadDropsArgs
            {
                Minutes = 0,
                Percent = 0,
            },
            Spikes = new Dynatrace.Inputs.ServiceAnomaliesLoadSpikesArgs
            {
                Minutes = 0,
                Percent = 0,
                Unknowns = "string",
            },
        },
        LoadDrops = new Dynatrace.Inputs.ServiceAnomaliesLoadDropsArgs
        {
            Minutes = 0,
            Percent = 0,
        },
        ResponseTimes = new Dynatrace.Inputs.ServiceAnomaliesResponseTimesArgs
        {
            Auto = new Dynatrace.Inputs.ServiceAnomaliesResponseTimesAutoArgs
            {
                Load = "string",
                Milliseconds = 0,
                Percent = 0,
                SlowestMilliseconds = 0,
                SlowestPercent = 0,
                Unknowns = "string",
            },
            Thresholds = new Dynatrace.Inputs.ServiceAnomaliesResponseTimesThresholdsArgs
            {
                Load = "string",
                Milliseconds = 0,
                Sensitivity = "string",
                SlowestMilliseconds = 0,
                Unknowns = "string",
            },
        },
    });
    
    example, err := dynatrace.NewServiceAnomalies(ctx, "serviceAnomaliesResource", &dynatrace.ServiceAnomaliesArgs{
    	FailureRates: &dynatrace.ServiceAnomaliesFailureRatesArgs{
    		Auto: &dynatrace.ServiceAnomaliesFailureRatesAutoArgs{
    			Absolute: pulumi.Int(0),
    			Relative: pulumi.Int(0),
    			Unknowns: pulumi.String("string"),
    		},
    		Thresholds: &dynatrace.ServiceAnomaliesFailureRatesThresholdsArgs{
    			Sensitivity: pulumi.String("string"),
    			Threshold:   pulumi.Int(0),
    			Unknowns:    pulumi.String("string"),
    		},
    	},
    	Load: &dynatrace.ServiceAnomaliesLoadArgs{
    		Drops: &dynatrace.ServiceAnomaliesLoadDropsArgs{
    			Minutes: pulumi.Int(0),
    			Percent: pulumi.Int(0),
    		},
    		Spikes: &dynatrace.ServiceAnomaliesLoadSpikesArgs{
    			Minutes:  pulumi.Int(0),
    			Percent:  pulumi.Int(0),
    			Unknowns: pulumi.String("string"),
    		},
    	},
    	LoadDrops: &dynatrace.ServiceAnomaliesLoadDropsArgs{
    		Minutes: pulumi.Int(0),
    		Percent: pulumi.Int(0),
    	},
    	ResponseTimes: &dynatrace.ServiceAnomaliesResponseTimesArgs{
    		Auto: &dynatrace.ServiceAnomaliesResponseTimesAutoArgs{
    			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.ServiceAnomaliesResponseTimesThresholdsArgs{
    			Load:                pulumi.String("string"),
    			Milliseconds:        pulumi.Int(0),
    			Sensitivity:         pulumi.String("string"),
    			SlowestMilliseconds: pulumi.Int(0),
    			Unknowns:            pulumi.String("string"),
    		},
    	},
    })
    
    var serviceAnomaliesResource = new ServiceAnomalies("serviceAnomaliesResource", ServiceAnomaliesArgs.builder()        
        .failureRates(ServiceAnomaliesFailureRatesArgs.builder()
            .auto(ServiceAnomaliesFailureRatesAutoArgs.builder()
                .absolute(0)
                .relative(0)
                .unknowns("string")
                .build())
            .thresholds(ServiceAnomaliesFailureRatesThresholdsArgs.builder()
                .sensitivity("string")
                .threshold(0)
                .unknowns("string")
                .build())
            .build())
        .load(ServiceAnomaliesLoadArgs.builder()
            .drops(ServiceAnomaliesLoadDropsArgs.builder()
                .minutes(0)
                .percent(0)
                .build())
            .spikes(ServiceAnomaliesLoadSpikesArgs.builder()
                .minutes(0)
                .percent(0)
                .unknowns("string")
                .build())
            .build())
        .loadDrops(ServiceAnomaliesLoadDropsArgs.builder()
            .minutes(0)
            .percent(0)
            .build())
        .responseTimes(ServiceAnomaliesResponseTimesArgs.builder()
            .auto(ServiceAnomaliesResponseTimesAutoArgs.builder()
                .load("string")
                .milliseconds(0)
                .percent(0)
                .slowestMilliseconds(0)
                .slowestPercent(0)
                .unknowns("string")
                .build())
            .thresholds(ServiceAnomaliesResponseTimesThresholdsArgs.builder()
                .load("string")
                .milliseconds(0)
                .sensitivity("string")
                .slowestMilliseconds(0)
                .unknowns("string")
                .build())
            .build())
        .build());
    
    service_anomalies_resource = dynatrace.ServiceAnomalies("serviceAnomaliesResource",
        failure_rates=dynatrace.ServiceAnomaliesFailureRatesArgs(
            auto=dynatrace.ServiceAnomaliesFailureRatesAutoArgs(
                absolute=0,
                relative=0,
                unknowns="string",
            ),
            thresholds=dynatrace.ServiceAnomaliesFailureRatesThresholdsArgs(
                sensitivity="string",
                threshold=0,
                unknowns="string",
            ),
        ),
        load=dynatrace.ServiceAnomaliesLoadArgs(
            drops=dynatrace.ServiceAnomaliesLoadDropsArgs(
                minutes=0,
                percent=0,
            ),
            spikes=dynatrace.ServiceAnomaliesLoadSpikesArgs(
                minutes=0,
                percent=0,
                unknowns="string",
            ),
        ),
        load_drops=dynatrace.ServiceAnomaliesLoadDropsArgs(
            minutes=0,
            percent=0,
        ),
        response_times=dynatrace.ServiceAnomaliesResponseTimesArgs(
            auto=dynatrace.ServiceAnomaliesResponseTimesAutoArgs(
                load="string",
                milliseconds=0,
                percent=0,
                slowest_milliseconds=0,
                slowest_percent=0,
                unknowns="string",
            ),
            thresholds=dynatrace.ServiceAnomaliesResponseTimesThresholdsArgs(
                load="string",
                milliseconds=0,
                sensitivity="string",
                slowest_milliseconds=0,
                unknowns="string",
            ),
        ))
    
    const serviceAnomaliesResource = new dynatrace.ServiceAnomalies("serviceAnomaliesResource", {
        failureRates: {
            auto: {
                absolute: 0,
                relative: 0,
                unknowns: "string",
            },
            thresholds: {
                sensitivity: "string",
                threshold: 0,
                unknowns: "string",
            },
        },
        load: {
            drops: {
                minutes: 0,
                percent: 0,
            },
            spikes: {
                minutes: 0,
                percent: 0,
                unknowns: "string",
            },
        },
        loadDrops: {
            minutes: 0,
            percent: 0,
        },
        responseTimes: {
            auto: {
                load: "string",
                milliseconds: 0,
                percent: 0,
                slowestMilliseconds: 0,
                slowestPercent: 0,
                unknowns: "string",
            },
            thresholds: {
                load: "string",
                milliseconds: 0,
                sensitivity: "string",
                slowestMilliseconds: 0,
                unknowns: "string",
            },
        },
    });
    
    type: dynatrace:ServiceAnomalies
    properties:
        failureRates:
            auto:
                absolute: 0
                relative: 0
                unknowns: string
            thresholds:
                sensitivity: string
                threshold: 0
                unknowns: string
        load:
            drops:
                minutes: 0
                percent: 0
            spikes:
                minutes: 0
                percent: 0
                unknowns: string
        loadDrops:
            minutes: 0
            percent: 0
        responseTimes:
            auto:
                load: string
                milliseconds: 0
                percent: 0
                slowestMilliseconds: 0
                slowestPercent: 0
                unknowns: string
            thresholds:
                load: string
                milliseconds: 0
                sensitivity: string
                slowestMilliseconds: 0
                unknowns: string
    

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

    FailureRates Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    Load Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    LoadDrops Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    ResponseTimes Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    FailureRates ServiceAnomaliesFailureRatesArgs
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    Load ServiceAnomaliesLoadArgs
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    LoadDrops ServiceAnomaliesLoadDropsArgs
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    ResponseTimes ServiceAnomaliesResponseTimesArgs
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failure_rates ServiceAnomaliesFailureRatesArgs
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoadArgs
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    load_drops ServiceAnomaliesLoadDropsArgs
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    response_times ServiceAnomaliesResponseTimesArgs
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates Property Map
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load Property Map
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops Property Map
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes Property Map
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.

    Outputs

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

    Get an existing ServiceAnomalies 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?: ServiceAnomaliesState, opts?: CustomResourceOptions): ServiceAnomalies
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            failure_rates: Optional[ServiceAnomaliesFailureRatesArgs] = None,
            load: Optional[ServiceAnomaliesLoadArgs] = None,
            load_drops: Optional[ServiceAnomaliesLoadDropsArgs] = None,
            response_times: Optional[ServiceAnomaliesResponseTimesArgs] = None) -> ServiceAnomalies
    func GetServiceAnomalies(ctx *Context, name string, id IDInput, state *ServiceAnomaliesState, opts ...ResourceOption) (*ServiceAnomalies, error)
    public static ServiceAnomalies Get(string name, Input<string> id, ServiceAnomaliesState? state, CustomResourceOptions? opts = null)
    public static ServiceAnomalies get(String name, Output<String> id, ServiceAnomaliesState 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:
    FailureRates Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    Load Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    LoadDrops Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    ResponseTimes Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    FailureRates ServiceAnomaliesFailureRatesArgs
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    Load ServiceAnomaliesLoadArgs
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    LoadDrops ServiceAnomaliesLoadDropsArgs
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    ResponseTimes ServiceAnomaliesResponseTimesArgs
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates ServiceAnomaliesFailureRates
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoad
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops ServiceAnomaliesLoadDrops
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes ServiceAnomaliesResponseTimes
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failure_rates ServiceAnomaliesFailureRatesArgs
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load ServiceAnomaliesLoadArgs
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    load_drops ServiceAnomaliesLoadDropsArgs
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    response_times ServiceAnomaliesResponseTimesArgs
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.
    failureRates Property Map
    Configuration of failure rate increase detection. Detecting failure rate increases will be disabled if this block is omitted.
    load Property Map
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    loadDrops Property Map
    The configuration of load drops detection. Detecting load drops will be disabled if this block is omitted.
    responseTimes Property Map
    Configuration of response time degradation detection. Detecting response time degradation will be disabled if this block is omitted.

    Supporting Types

    ServiceAnomaliesFailureRates, ServiceAnomaliesFailureRatesArgs

    Auto Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesFailureRatesAuto
    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 Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesFailureRatesThresholds
    Fixed thresholds for failure rate increase detection
    Auto ServiceAnomaliesFailureRatesAuto
    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 ServiceAnomaliesFailureRatesThresholds
    Fixed thresholds for failure rate increase detection
    auto ServiceAnomaliesFailureRatesAuto
    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 ServiceAnomaliesFailureRatesThresholds
    Fixed thresholds for failure rate increase detection
    auto ServiceAnomaliesFailureRatesAuto
    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 ServiceAnomaliesFailureRatesThresholds
    Fixed thresholds for failure rate increase detection
    auto ServiceAnomaliesFailureRatesAuto
    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 ServiceAnomaliesFailureRatesThresholds
    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

    ServiceAnomaliesFailureRatesAuto, ServiceAnomaliesFailureRatesAutoArgs

    absolute Integer
    relative Integer
    unknowns String
    absolute number
    relative number
    unknowns string
    absolute Number
    relative Number
    unknowns String

    ServiceAnomaliesFailureRatesThresholds, ServiceAnomaliesFailureRatesThresholdsArgs

    sensitivity String
    threshold Integer
    unknowns String
    sensitivity string
    threshold number
    unknowns string
    sensitivity String
    threshold Number
    unknowns String

    ServiceAnomaliesLoad, ServiceAnomaliesLoadArgs

    Drops ServiceAnomaliesLoadDrops
    The configuration of traffic drops detection
    Spikes ServiceAnomaliesLoadSpikes
    The configuration of traffic spikes detection
    drops ServiceAnomaliesLoadDrops
    The configuration of traffic drops detection
    spikes ServiceAnomaliesLoadSpikes
    The configuration of traffic spikes detection
    drops ServiceAnomaliesLoadDrops
    The configuration of traffic drops detection
    spikes ServiceAnomaliesLoadSpikes
    The configuration of traffic spikes detection
    drops ServiceAnomaliesLoadDrops
    The configuration of traffic drops detection
    spikes ServiceAnomaliesLoadSpikes
    The configuration of traffic spikes detection
    drops Property Map
    The configuration of traffic drops detection
    spikes Property Map
    The configuration of traffic spikes detection

    ServiceAnomaliesLoadDrops, ServiceAnomaliesLoadDropsArgs

    Minutes int
    Alert if the service stays in abnormal state for at least X minutes
    Percent int
    Alert if the observed load is more than X % of the expected value
    Minutes int
    Alert if the service stays in abnormal state for at least X minutes
    Percent int
    Alert if the observed load is more than X % of the expected value
    minutes Integer
    Alert if the service stays in abnormal state for at least X minutes
    percent Integer
    Alert if the observed load is more than X % of the expected value
    minutes number
    Alert if the service stays in abnormal state for at least X minutes
    percent number
    Alert if the observed load is more than X % of the expected value
    minutes int
    Alert if the service stays in abnormal state for at least X minutes
    percent int
    Alert if the observed load is more than X % of the expected value
    minutes Number
    Alert if the service stays in abnormal state for at least X minutes
    percent Number
    Alert if the observed load is more than X % of the expected value

    ServiceAnomaliesLoadSpikes, ServiceAnomaliesLoadSpikesArgs

    Minutes int
    Percent int
    Unknowns string
    Minutes int
    Percent int
    Unknowns string
    minutes Integer
    percent Integer
    unknowns String
    minutes number
    percent number
    unknowns string
    minutes Number
    percent Number
    unknowns String

    ServiceAnomaliesResponseTimes, ServiceAnomaliesResponseTimesArgs

    Auto Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesResponseTimesAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    Thresholds Lbrlabs.PulumiPackage.Dynatrace.Inputs.ServiceAnomaliesResponseTimesThresholds
    Fixed thresholds for response time degradation detection
    Auto ServiceAnomaliesResponseTimesAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    Thresholds ServiceAnomaliesResponseTimesThresholds
    Fixed thresholds for response time degradation detection
    auto ServiceAnomaliesResponseTimesAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ServiceAnomaliesResponseTimesThresholds
    Fixed thresholds for response time degradation detection
    auto ServiceAnomaliesResponseTimesAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ServiceAnomaliesResponseTimesThresholds
    Fixed thresholds for response time degradation detection
    auto ServiceAnomaliesResponseTimesAuto
    Parameters of the response time degradation auto-detection. Violation of any criterion triggers an alert
    thresholds ServiceAnomaliesResponseTimesThresholds
    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

    ServiceAnomaliesResponseTimesAuto, ServiceAnomaliesResponseTimesAutoArgs

    Load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    Milliseconds int
    Percent int
    SlowestMilliseconds int
    SlowestPercent int
    Unknowns string
    Load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    Milliseconds int
    Percent int
    SlowestMilliseconds int
    SlowestPercent int
    Unknowns string
    load String
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds Integer
    percent Integer
    slowestMilliseconds Integer
    slowestPercent Integer
    unknowns String
    load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds number
    percent number
    slowestMilliseconds number
    slowestPercent number
    unknowns string
    load str
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds int
    percent int
    slowest_milliseconds int
    slowest_percent int
    unknowns str
    load String
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds Number
    percent Number
    slowestMilliseconds Number
    slowestPercent Number
    unknowns String

    ServiceAnomaliesResponseTimesThresholds, ServiceAnomaliesResponseTimesThresholdsArgs

    Load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    Milliseconds int
    Sensitivity string
    SlowestMilliseconds int
    Unknowns string
    Load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    Milliseconds int
    Sensitivity string
    SlowestMilliseconds int
    Unknowns string
    load String
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds Integer
    sensitivity String
    slowestMilliseconds Integer
    unknowns String
    load string
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds number
    sensitivity string
    slowestMilliseconds number
    unknowns string
    load str
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds int
    sensitivity str
    slowest_milliseconds int
    unknowns str
    load String
    The configuration of load spikes detection. Detecting load spikes will be disabled if this block is omitted.
    milliseconds Number
    sensitivity String
    slowestMilliseconds Number
    unknowns String

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs