Dynatrace v0.10.0 published on Friday, Jun 7, 2024 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 string
- The unique name of the resource.
- args DiskSpecificAnomaliesV2Args
- 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 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 string
- The unique name of the resource.
- args DiskSpecificAnomaliesV2Args
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DiskSpecificAnomaliesV2Args
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
},
});
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"),
},
})
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());
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=dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs(
free_inodes_percentage=0,
),
detection_mode="string",
),
disk_low_space_detection=dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs(
free_space_percentage=0,
),
detection_mode="string",
),
disk_slow_writes_and_reads_detection=dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs(
write_and_read_time=0,
),
detection_mode="string",
))
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",
},
});
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
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
The DiskSpecificAnomaliesV2 resource accepts the following input properties:
- Disk
Id string - The id for the disk anomaly detection
- Override
Disk boolLow Space Detection - Override low disk space detection settings
- Override
Low boolInodes Detection - Override low inodes detection settings
- Override
Slow boolWrites And Reads Detection - Override slow writes and reads detection settings
- Disk
Low Pulumiverse.Inodes Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- Disk
Low Pulumiverse.Space Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Space Detection - no documentation available
- Disk
Slow Pulumiverse.Writes And Reads Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- Disk
Id string - The id for the disk anomaly detection
- Override
Disk boolLow Space Detection - Override low disk space detection settings
- Override
Low boolInodes Detection - Override low inodes detection settings
- Override
Slow boolWrites And Reads Detection - Override slow writes and reads detection settings
- Disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection Args - no documentation available
- Disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection Args - no documentation available
- Disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection Args - no documentation available
- disk
Id String - The id for the disk anomaly detection
- override
Disk BooleanLow Space Detection - Override low disk space detection settings
- override
Low BooleanInodes Detection - Override low inodes detection settings
- override
Slow BooleanWrites And Reads Detection - Override slow writes and reads detection settings
- disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection - no documentation available
- disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- disk
Id string - The id for the disk anomaly detection
- override
Disk booleanLow Space Detection - Override low disk space detection settings
- override
Low booleanInodes Detection - Override low inodes detection settings
- override
Slow booleanWrites And Reads Detection - Override slow writes and reads detection settings
- disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection - no documentation available
- disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- disk_
id str - The id for the disk anomaly detection
- override_
disk_ boollow_ space_ detection - Override low disk space detection settings
- override_
low_ boolinodes_ detection - Override low inodes detection settings
- override_
slow_ boolwrites_ and_ reads_ detection - Override slow writes and reads detection settings
- disk_
low_ Diskinodes_ detection Specific Anomalies V2Disk Low Inodes Detection Args - no documentation available
- disk_
low_ Diskspace_ detection Specific Anomalies V2Disk Low Space Detection Args - no documentation available
- disk_
slow_ Diskwrites_ and_ reads_ detection Specific Anomalies V2Disk Slow Writes And Reads Detection Args - no documentation available
- disk
Id String - The id for the disk anomaly detection
- override
Disk BooleanLow Space Detection - Override low disk space detection settings
- override
Low BooleanInodes Detection - Override low inodes detection settings
- override
Slow BooleanWrites And Reads Detection - Override slow writes and reads detection settings
- disk
Low Property MapInodes Detection - no documentation available
- disk
Low Property MapSpace Detection - no documentation available
- disk
Slow Property MapWrites And Reads Detection - 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)
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.
- Disk
Id string - The id for the disk anomaly detection
- Disk
Low Pulumiverse.Inodes Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- Disk
Low Pulumiverse.Space Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Space Detection - no documentation available
- Disk
Slow Pulumiverse.Writes And Reads Detection Dynatrace. Inputs. Disk Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- Override
Disk boolLow Space Detection - Override low disk space detection settings
- Override
Low boolInodes Detection - Override low inodes detection settings
- Override
Slow boolWrites And Reads Detection - Override slow writes and reads detection settings
- Disk
Id string - The id for the disk anomaly detection
- Disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection Args - no documentation available
- Disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection Args - no documentation available
- Disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection Args - no documentation available
- Override
Disk boolLow Space Detection - Override low disk space detection settings
- Override
Low boolInodes Detection - Override low inodes detection settings
- Override
Slow boolWrites And Reads Detection - Override slow writes and reads detection settings
- disk
Id String - The id for the disk anomaly detection
- disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection - no documentation available
- disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- override
Disk BooleanLow Space Detection - Override low disk space detection settings
- override
Low BooleanInodes Detection - Override low inodes detection settings
- override
Slow BooleanWrites And Reads Detection - Override slow writes and reads detection settings
- disk
Id string - The id for the disk anomaly detection
- disk
Low DiskInodes Detection Specific Anomalies V2Disk Low Inodes Detection - no documentation available
- disk
Low DiskSpace Detection Specific Anomalies V2Disk Low Space Detection - no documentation available
- disk
Slow DiskWrites And Reads Detection Specific Anomalies V2Disk Slow Writes And Reads Detection - no documentation available
- override
Disk booleanLow Space Detection - Override low disk space detection settings
- override
Low booleanInodes Detection - Override low inodes detection settings
- override
Slow booleanWrites And Reads Detection - Override slow writes and reads detection settings
- disk_
id str - The id for the disk anomaly detection
- disk_
low_ Diskinodes_ detection Specific Anomalies V2Disk Low Inodes Detection Args - no documentation available
- disk_
low_ Diskspace_ detection Specific Anomalies V2Disk Low Space Detection Args - no documentation available
- disk_
slow_ Diskwrites_ and_ reads_ detection Specific Anomalies V2Disk Slow Writes And Reads Detection Args - no documentation available
- override_
disk_ boollow_ space_ detection - Override low disk space detection settings
- override_
low_ boolinodes_ detection - Override low inodes detection settings
- override_
slow_ boolwrites_ and_ reads_ detection - Override slow writes and reads detection settings
- disk
Id String - The id for the disk anomaly detection
- disk
Low Property MapInodes Detection - no documentation available
- disk
Low Property MapSpace Detection - no documentation available
- disk
Slow Property MapWrites And Reads Detection - no documentation available
- override
Disk BooleanLow Space Detection - Override low disk space detection settings
- override
Low BooleanInodes Detection - Override low inodes detection settings
- override
Slow BooleanWrites And Reads Detection - Override slow writes and reads detection settings
Supporting Types
DiskSpecificAnomaliesV2DiskLowInodesDetection, DiskSpecificAnomaliesV2DiskLowInodesDetectionArgs
- Enabled bool
- Detect low inodes number available
- Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Inodes Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for low inodes number available
- Enabled bool
- Detect low inodes number available
- Custom
Thresholds DiskSpecific Anomalies V2Disk Low Inodes Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for low inodes number available
- enabled Boolean
- Detect low inodes number available
- custom
Thresholds DiskSpecific Anomalies V2Disk Low Inodes Detection Custom Thresholds - no documentation available
- detection
Mode String - Detection mode for low inodes number available
- enabled boolean
- Detect low inodes number available
- custom
Thresholds DiskSpecific Anomalies V2Disk Low Inodes Detection Custom Thresholds - no documentation available
- detection
Mode string - Detection mode for low inodes number available
- enabled bool
- Detect low inodes number available
- custom_
thresholds DiskSpecific Anomalies V2Disk Low Inodes Detection Custom Thresholds - no documentation available
- detection_
mode str - Detection mode for low inodes number available
- enabled Boolean
- Detect low inodes number available
- custom
Thresholds Property Map - no documentation available
- detection
Mode String - Detection mode for low inodes number available
DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskLowInodesDetectionCustomThresholdsArgs
- Free
Inodes intPercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
- Free
Inodes intPercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
- free
Inodes IntegerPercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
- free
Inodes numberPercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
- free_
inodes_ intpercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
- free
Inodes NumberPercentage - Alert if the percentage of available inodes is lower than this threshold in 3 out of 5 samples
DiskSpecificAnomaliesV2DiskLowSpaceDetection, DiskSpecificAnomaliesV2DiskLowSpaceDetectionArgs
- Enabled bool
- Detect low disk space
- Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Disk Specific Anomalies V2Disk Low Space Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for low disk space
- Enabled bool
- Detect low disk space
- Custom
Thresholds DiskSpecific Anomalies V2Disk Low Space Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for low disk space
- enabled Boolean
- Detect low disk space
- custom
Thresholds DiskSpecific Anomalies V2Disk Low Space Detection Custom Thresholds - no documentation available
- detection
Mode String - Detection mode for low disk space
- enabled boolean
- Detect low disk space
- custom
Thresholds DiskSpecific Anomalies V2Disk Low Space Detection Custom Thresholds - no documentation available
- detection
Mode string - Detection mode for low disk space
- enabled bool
- Detect low disk space
- custom_
thresholds DiskSpecific Anomalies V2Disk Low Space Detection Custom Thresholds - no documentation available
- detection_
mode str - Detection mode for low disk space
- enabled Boolean
- Detect low disk space
- custom
Thresholds Property Map - no documentation available
- detection
Mode String - Detection mode for low disk space
DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskLowSpaceDetectionCustomThresholdsArgs
- Free
Space intPercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- Free
Space intPercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- free
Space IntegerPercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- free
Space numberPercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- free_
space_ intpercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- free
Space NumberPercentage - Alert if free disk space is lower than this percentage in 3 out of 5 samples
DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetection, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionArgs
- Enabled bool
- Detect slow-running disks
- Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Disk Specific Anomalies V2Disk Slow Writes And Reads Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for slow running disks
- Enabled bool
- Detect slow-running disks
- Custom
Thresholds DiskSpecific Anomalies V2Disk Slow Writes And Reads Detection Custom Thresholds - no documentation available
- Detection
Mode string - Detection mode for slow running disks
- enabled Boolean
- Detect slow-running disks
- custom
Thresholds DiskSpecific Anomalies V2Disk Slow Writes And Reads Detection Custom Thresholds - no documentation available
- detection
Mode String - Detection mode for slow running disks
- enabled boolean
- Detect slow-running disks
- custom
Thresholds DiskSpecific Anomalies V2Disk Slow Writes And Reads Detection Custom Thresholds - no documentation available
- detection
Mode string - Detection mode for slow running disks
- enabled bool
- Detect slow-running disks
- custom_
thresholds DiskSpecific Anomalies V2Disk Slow Writes And Reads Detection Custom Thresholds - no documentation available
- detection_
mode str - Detection mode for slow running disks
- enabled Boolean
- Detect slow-running disks
- custom
Thresholds Property Map - no documentation available
- detection
Mode String - Detection mode for slow running disks
DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholds, DiskSpecificAnomaliesV2DiskSlowWritesAndReadsDetectionCustomThresholdsArgs
- Write
And intRead Time - Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
- Write
And intRead Time - Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
- write
And IntegerRead Time - Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
- write
And numberRead Time - Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
- write_
and_ intread_ time - Alert if disk read time or write time is higher than this threshold in 3 out of 5 samples
- write
And NumberRead Time - 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.