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",
},
});
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={
"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",
})
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
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:
- Disk
Id This property is required. Changes to this property will trigger replacement.
- 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 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 This property is required. Changes to this property will trigger replacement.
- 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 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 This property is required. Changes to this property will trigger replacement.
- The id for the disk anomaly detection
- override
Disk Low Space Detection This property is required. Boolean - Override low disk space detection settings
- override
Low Inodes Detection This property is required. Boolean - Override low inodes detection settings
- override
Slow Writes And Reads Detection This property is required. Boolean - 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 This property is required. Changes to this property will trigger replacement.
- The id for the disk anomaly detection
- override
Disk Low Space Detection This property is required. boolean - Override low disk space detection settings
- override
Low Inodes Detection This property is required. boolean - Override low inodes detection settings
- override
Slow Writes And Reads Detection This property is required. boolean - 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 This property is required. Changes to this property will trigger replacement.
- 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_ 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 This property is required. Changes to this property will trigger replacement.
- The id for the disk anomaly detection
- override
Disk Low Space Detection This property is required. Boolean - Override low disk space detection settings
- override
Low Inodes Detection This property is required. Boolean - Override low inodes detection settings
- override
Slow Writes And Reads Detection This property is required. Boolean - 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)
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.
- Disk
Id Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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 Changes to this property will trigger replacement.
- 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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 Percentage This property is required. int - 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
- free
Inodes Percentage This property is required. Integer - 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. 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
- free
Inodes Percentage 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
- 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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 Percentage This property is required. int - 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
- free
Space Percentage This property is required. Integer - Alert if free disk space is lower than this percentage in 3 out of 5 samples
- free
Space Percentage 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
- free
Space Percentage 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
- 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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
This property is required. 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 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
- 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
- write
And Read Time This property is required. Integer - 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. 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
- write
And Read Time 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.