1. Packages
  2. Dynatrace
  3. API Docs
  4. DiskSpecificAnomaliesV2
Dynatrace v0.27.0 published on Friday, Mar 21, 2025 by Pulumiverse

dynatrace.DiskSpecificAnomaliesV2

Explore with Pulumi AI

Create DiskSpecificAnomaliesV2 Resource

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

Constructor syntax

new DiskSpecificAnomaliesV2(name: string, args: DiskSpecificAnomaliesV2Args, opts?: CustomResourceOptions);
@overload
def DiskSpecificAnomaliesV2(resource_name: str,
                            args: DiskSpecificAnomaliesV2Args,
                            opts: Optional[ResourceOptions] = None)

@overload
def DiskSpecificAnomaliesV2(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            disk_id: Optional[str] = None,
                            override_disk_low_space_detection: Optional[bool] = None,
                            override_low_inodes_detection: Optional[bool] = None,
                            override_slow_writes_and_reads_detection: Optional[bool] = None,
                            disk_low_inodes_detection: Optional[DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs] = None,
                            disk_low_space_detection: Optional[DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs] = None,
                            disk_slow_writes_and_reads_detection: Optional[DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs] = None)
func NewDiskSpecificAnomaliesV2(ctx *Context, name string, args DiskSpecificAnomaliesV2Args, opts ...ResourceOption) (*DiskSpecificAnomaliesV2, error)
public DiskSpecificAnomaliesV2(string name, DiskSpecificAnomaliesV2Args args, CustomResourceOptions? opts = null)
public DiskSpecificAnomaliesV2(String name, DiskSpecificAnomaliesV2Args args)
public DiskSpecificAnomaliesV2(String name, DiskSpecificAnomaliesV2Args args, CustomResourceOptions options)
type: dynatrace:DiskSpecificAnomaliesV2
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DiskSpecificAnomaliesV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DiskSpecificAnomaliesV2Args
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DiskSpecificAnomaliesV2Args
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DiskSpecificAnomaliesV2Args
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DiskSpecificAnomaliesV2Args
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 diskSpecificAnomaliesV2Resource = new Dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", new()
{
    DiskId = "string",
    OverrideDiskLowSpaceDetection = false,
    OverrideLowInodesDetection = false,
    OverrideSlowWritesAndReadsDetection = false,
    DiskLowInodesDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
    {
        Enabled = false,
        CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs
        {
            FreeInodesPercentage = 0,
        },
        DetectionMode = "string",
    },
    DiskLowSpaceDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
    {
        Enabled = false,
        CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs
        {
            FreeSpacePercentage = 0,
        },
        DetectionMode = "string",
    },
    DiskSlowWritesAndReadsDetection = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
    {
        Enabled = false,
        CustomThresholds = new Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs
        {
            WriteAndReadTime = 0,
        },
        DetectionMode = "string",
    },
});
Copy
example, err := dynatrace.NewDiskSpecificAnomaliesV2(ctx, "diskSpecificAnomaliesV2Resource", &dynatrace.DiskSpecificAnomaliesV2Args{
	DiskId:                              pulumi.String("string"),
	OverrideDiskLowSpaceDetection:       pulumi.Bool(false),
	OverrideLowInodesDetection:          pulumi.Bool(false),
	OverrideSlowWritesAndReadsDetection: pulumi.Bool(false),
	DiskLowInodesDetection: &dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs{
		Enabled: pulumi.Bool(false),
		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs{
			FreeInodesPercentage: pulumi.Int(0),
		},
		DetectionMode: pulumi.String("string"),
	},
	DiskLowSpaceDetection: &dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs{
		Enabled: pulumi.Bool(false),
		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs{
			FreeSpacePercentage: pulumi.Int(0),
		},
		DetectionMode: pulumi.String("string"),
	},
	DiskSlowWritesAndReadsDetection: &dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs{
		Enabled: pulumi.Bool(false),
		CustomThresholds: &dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs{
			WriteAndReadTime: pulumi.Int(0),
		},
		DetectionMode: pulumi.String("string"),
	},
})
Copy
var diskSpecificAnomaliesV2Resource = new DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", DiskSpecificAnomaliesV2Args.builder()
    .diskId("string")
    .overrideDiskLowSpaceDetection(false)
    .overrideLowInodesDetection(false)
    .overrideSlowWritesAndReadsDetection(false)
    .diskLowInodesDetection(DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs.builder()
        .enabled(false)
        .customThresholds(DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs.builder()
            .freeInodesPercentage(0)
            .build())
        .detectionMode("string")
        .build())
    .diskLowSpaceDetection(DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs.builder()
        .enabled(false)
        .customThresholds(DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs.builder()
            .freeSpacePercentage(0)
            .build())
        .detectionMode("string")
        .build())
    .diskSlowWritesAndReadsDetection(DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs.builder()
        .enabled(false)
        .customThresholds(DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs.builder()
            .writeAndReadTime(0)
            .build())
        .detectionMode("string")
        .build())
    .build());
Copy
disk_specific_anomalies_v2_resource = dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource",
    disk_id="string",
    override_disk_low_space_detection=False,
    override_low_inodes_detection=False,
    override_slow_writes_and_reads_detection=False,
    disk_low_inodes_detection={
        "enabled": False,
        "custom_thresholds": {
            "free_inodes_percentage": 0,
        },
        "detection_mode": "string",
    },
    disk_low_space_detection={
        "enabled": False,
        "custom_thresholds": {
            "free_space_percentage": 0,
        },
        "detection_mode": "string",
    },
    disk_slow_writes_and_reads_detection={
        "enabled": False,
        "custom_thresholds": {
            "write_and_read_time": 0,
        },
        "detection_mode": "string",
    })
Copy
const diskSpecificAnomaliesV2Resource = new dynatrace.DiskSpecificAnomaliesV2("diskSpecificAnomaliesV2Resource", {
    diskId: "string",
    overrideDiskLowSpaceDetection: false,
    overrideLowInodesDetection: false,
    overrideSlowWritesAndReadsDetection: false,
    diskLowInodesDetection: {
        enabled: false,
        customThresholds: {
            freeInodesPercentage: 0,
        },
        detectionMode: "string",
    },
    diskLowSpaceDetection: {
        enabled: false,
        customThresholds: {
            freeSpacePercentage: 0,
        },
        detectionMode: "string",
    },
    diskSlowWritesAndReadsDetection: {
        enabled: false,
        customThresholds: {
            writeAndReadTime: 0,
        },
        detectionMode: "string",
    },
});
Copy
type: dynatrace:DiskSpecificAnomaliesV2
properties:
    diskId: string
    diskLowInodesDetection:
        customThresholds:
            freeInodesPercentage: 0
        detectionMode: string
        enabled: false
    diskLowSpaceDetection:
        customThresholds:
            freeSpacePercentage: 0
        detectionMode: string
        enabled: false
    diskSlowWritesAndReadsDetection:
        customThresholds:
            writeAndReadTime: 0
        detectionMode: string
        enabled: false
    overrideDiskLowSpaceDetection: false
    overrideLowInodesDetection: false
    overrideSlowWritesAndReadsDetection: false
Copy

DiskSpecificAnomaliesV2 Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The DiskSpecificAnomaliesV2 resource accepts the following input properties:

DiskId
This property is required.
Changes to this property will trigger replacement.
string
The id for the disk anomaly detection
OverrideDiskLowSpaceDetection This property is required. bool
Override low disk space detection settings
OverrideLowInodesDetection This property is required. bool
Override low inodes detection settings
OverrideSlowWritesAndReadsDetection This property is required. bool
Override slow writes and reads detection settings
DiskLowInodesDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
DiskLowSpaceDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
DiskSlowWritesAndReadsDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
DiskId
This property is required.
Changes to this property will trigger replacement.
string
The id for the disk anomaly detection
OverrideDiskLowSpaceDetection This property is required. bool
Override low disk space detection settings
OverrideLowInodesDetection This property is required. bool
Override low inodes detection settings
OverrideSlowWritesAndReadsDetection This property is required. bool
Override slow writes and reads detection settings
DiskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
no documentation available
DiskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
no documentation available
DiskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
no documentation available
diskId
This property is required.
Changes to this property will trigger replacement.
String
The id for the disk anomaly detection
overrideDiskLowSpaceDetection This property is required. Boolean
Override low disk space detection settings
overrideLowInodesDetection This property is required. Boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection This property is required. Boolean
Override slow writes and reads detection settings
diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
diskId
This property is required.
Changes to this property will trigger replacement.
string
The id for the disk anomaly detection
overrideDiskLowSpaceDetection This property is required. boolean
Override low disk space detection settings
overrideLowInodesDetection This property is required. boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection This property is required. boolean
Override slow writes and reads detection settings
diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
disk_id
This property is required.
Changes to this property will trigger replacement.
str
The id for the disk anomaly detection
override_disk_low_space_detection This property is required. bool
Override low disk space detection settings
override_low_inodes_detection This property is required. bool
Override low inodes detection settings
override_slow_writes_and_reads_detection This property is required. bool
Override slow writes and reads detection settings
disk_low_inodes_detection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
no documentation available
disk_low_space_detection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
no documentation available
disk_slow_writes_and_reads_detection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
no documentation available
diskId
This property is required.
Changes to this property will trigger replacement.
String
The id for the disk anomaly detection
overrideDiskLowSpaceDetection This property is required. Boolean
Override low disk space detection settings
overrideLowInodesDetection This property is required. Boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection This property is required. Boolean
Override slow writes and reads detection settings
diskLowInodesDetection Property Map
no documentation available
diskLowSpaceDetection Property Map
no documentation available
diskSlowWritesAndReadsDetection Property Map
no documentation available

Outputs

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

Get an existing DiskSpecificAnomaliesV2 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?: DiskSpecificAnomaliesV2State, opts?: CustomResourceOptions): DiskSpecificAnomaliesV2
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        disk_id: Optional[str] = None,
        disk_low_inodes_detection: Optional[DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs] = None,
        disk_low_space_detection: Optional[DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs] = None,
        disk_slow_writes_and_reads_detection: Optional[DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs] = None,
        override_disk_low_space_detection: Optional[bool] = None,
        override_low_inodes_detection: Optional[bool] = None,
        override_slow_writes_and_reads_detection: Optional[bool] = None) -> DiskSpecificAnomaliesV2
func GetDiskSpecificAnomaliesV2(ctx *Context, name string, id IDInput, state *DiskSpecificAnomaliesV2State, opts ...ResourceOption) (*DiskSpecificAnomaliesV2, error)
public static DiskSpecificAnomaliesV2 Get(string name, Input<string> id, DiskSpecificAnomaliesV2State? state, CustomResourceOptions? opts = null)
public static DiskSpecificAnomaliesV2 get(String name, Output<String> id, DiskSpecificAnomaliesV2State state, CustomResourceOptions options)
resources:  _:    type: dynatrace:DiskSpecificAnomaliesV2    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
DiskId Changes to this property will trigger replacement. string
The id for the disk anomaly detection
DiskLowInodesDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
DiskLowSpaceDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
DiskSlowWritesAndReadsDetection Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
OverrideDiskLowSpaceDetection bool
Override low disk space detection settings
OverrideLowInodesDetection bool
Override low inodes detection settings
OverrideSlowWritesAndReadsDetection bool
Override slow writes and reads detection settings
DiskId Changes to this property will trigger replacement. string
The id for the disk anomaly detection
DiskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
no documentation available
DiskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
no documentation available
DiskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
no documentation available
OverrideDiskLowSpaceDetection bool
Override low disk space detection settings
OverrideLowInodesDetection bool
Override low inodes detection settings
OverrideSlowWritesAndReadsDetection bool
Override slow writes and reads detection settings
diskId Changes to this property will trigger replacement. String
The id for the disk anomaly detection
diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
overrideDiskLowSpaceDetection Boolean
Override low disk space detection settings
overrideLowInodesDetection Boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection Boolean
Override slow writes and reads detection settings
diskId Changes to this property will trigger replacement. string
The id for the disk anomaly detection
diskLowInodesDetection DiskSpecificAnomaliesV2DiskLowInodesDetection
no documentation available
diskLowSpaceDetection DiskSpecificAnomaliesV2DiskLowSpaceDetection
no documentation available
diskSlowWritesAndReadsDetection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
no documentation available
overrideDiskLowSpaceDetection boolean
Override low disk space detection settings
overrideLowInodesDetection boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection boolean
Override slow writes and reads detection settings
disk_id Changes to this property will trigger replacement. str
The id for the disk anomaly detection
disk_low_inodes_detection DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
no documentation available
disk_low_space_detection DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
no documentation available
disk_slow_writes_and_reads_detection DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
no documentation available
override_disk_low_space_detection bool
Override low disk space detection settings
override_low_inodes_detection bool
Override low inodes detection settings
override_slow_writes_and_reads_detection bool
Override slow writes and reads detection settings
diskId Changes to this property will trigger replacement. String
The id for the disk anomaly detection
diskLowInodesDetection Property Map
no documentation available
diskLowSpaceDetection Property Map
no documentation available
diskSlowWritesAndReadsDetection Property Map
no documentation available
overrideDiskLowSpaceDetection Boolean
Override low disk space detection settings
overrideLowInodesDetection Boolean
Override low inodes detection settings
overrideSlowWritesAndReadsDetection Boolean
Override slow writes and reads detection settings

Supporting Types

DiskSpecificAnomaliesV2DiskLowInodesDetection
, DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs

Enabled This property is required. bool
Detect low inodes number available
CustomThresholds Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for low inodes number available
Enabled This property is required. bool
Detect low inodes number available
CustomThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for low inodes number available
enabled This property is required. Boolean
Detect low inodes number available
customThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
no documentation available
detectionMode String
Detection mode for low inodes number available
enabled This property is required. boolean
Detect low inodes number available
customThresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
no documentation available
detectionMode string
Detection mode for low inodes number available
enabled This property is required. bool
Detect low inodes number available
custom_thresholds DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
no documentation available
detection_mode str
Detection mode for low inodes number available
enabled This property is required. Boolean
Detect low inodes number available
customThresholds Property Map
no documentation available
detectionMode String
Detection mode for low inodes number available

DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds
, DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs

FreeInodesPercentage This property is required. int
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
FreeInodesPercentage This property is required. int
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
freeInodesPercentage This property is required. Integer
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
freeInodesPercentage This property is required. number
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
free_inodes_percentage This property is required. int
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
freeInodesPercentage This property is required. Number
Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples

DiskSpecificAnomaliesV2DiskLowSpaceDetection
, DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs

Enabled This property is required. bool
Detect low disk space
CustomThresholds Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for low disk space
Enabled This property is required. bool
Detect low disk space
CustomThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for low disk space
enabled This property is required. Boolean
Detect low disk space
customThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
no documentation available
detectionMode String
Detection mode for low disk space
enabled This property is required. boolean
Detect low disk space
customThresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
no documentation available
detectionMode string
Detection mode for low disk space
enabled This property is required. bool
Detect low disk space
custom_thresholds DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
no documentation available
detection_mode str
Detection mode for low disk space
enabled This property is required. Boolean
Detect low disk space
customThresholds Property Map
no documentation available
detectionMode String
Detection mode for low disk space

DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds
, DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs

FreeSpacePercentage This property is required. int
Alert if free disk space is lower than this percentage in 3 out of 5 samples
FreeSpacePercentage This property is required. int
Alert if free disk space is lower than this percentage in 3 out of 5 samples
freeSpacePercentage This property is required. Integer
Alert if free disk space is lower than this percentage in 3 out of 5 samples
freeSpacePercentage This property is required. number
Alert if free disk space is lower than this percentage in 3 out of 5 samples
free_space_percentage This property is required. int
Alert if free disk space is lower than this percentage in 3 out of 5 samples
freeSpacePercentage This property is required. Number
Alert if free disk space is lower than this percentage in 3 out of 5 samples

DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection
, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs

Enabled This property is required. bool
Detect slow-running disks
CustomThresholds Pulumiverse.Dynatrace.Inputs.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for slow running disks
Enabled This property is required. bool
Detect slow-running disks
CustomThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
no documentation available
DetectionMode string
Detection mode for slow running disks
enabled This property is required. Boolean
Detect slow-running disks
customThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
no documentation available
detectionMode String
Detection mode for slow running disks
enabled This property is required. boolean
Detect slow-running disks
customThresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
no documentation available
detectionMode string
Detection mode for slow running disks
enabled This property is required. bool
Detect slow-running disks
custom_thresholds DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
no documentation available
detection_mode str
Detection mode for slow running disks
enabled This property is required. Boolean
Detect slow-running disks
customThresholds Property Map
no documentation available
detectionMode String
Detection mode for slow running disks

DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds
, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs

WriteAndReadTime This property is required. int
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
WriteAndReadTime This property is required. int
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
writeAndReadTime This property is required. Integer
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
writeAndReadTime This property is required. number
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
write_and_read_time This property is required. int
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
writeAndReadTime This property is required. Number
Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples

Package Details

Repository
dynatrace pulumiverse/pulumi-dynatrace
License
Apache-2.0
Notes
This Pulumi package is based on the dynatrace Terraform Provider.