Dynatrace v0.16.0 published on Tuesday, Sep 10, 2024 by Pulumiverse
dynatrace.VmwareAnomalies
Explore with Pulumi AI
Create VmwareAnomalies Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VmwareAnomalies(name: string, args: VmwareAnomaliesArgs, opts?: CustomResourceOptions);
@overload
def VmwareAnomalies(resource_name: str,
args: VmwareAnomaliesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VmwareAnomalies(resource_name: str,
opts: Optional[ResourceOptions] = None,
dropped_packets_detection: Optional[VmwareAnomaliesDroppedPacketsDetectionArgs] = None,
esxi_high_cpu_detection: Optional[VmwareAnomaliesEsxiHighCpuDetectionArgs] = None,
esxi_high_memory_detection: Optional[VmwareAnomaliesEsxiHighMemoryDetectionArgs] = None,
guest_cpu_limit_detection: Optional[VmwareAnomaliesGuestCpuLimitDetectionArgs] = None,
low_datastore_space_detection: Optional[VmwareAnomaliesLowDatastoreSpaceDetectionArgs] = None,
overloaded_storage_detection: Optional[VmwareAnomaliesOverloadedStorageDetectionArgs] = None,
slow_physical_storage_detection: Optional[VmwareAnomaliesSlowPhysicalStorageDetectionArgs] = None,
undersized_storage_detection: Optional[VmwareAnomaliesUndersizedStorageDetectionArgs] = None)
func NewVmwareAnomalies(ctx *Context, name string, args VmwareAnomaliesArgs, opts ...ResourceOption) (*VmwareAnomalies, error)
public VmwareAnomalies(string name, VmwareAnomaliesArgs args, CustomResourceOptions? opts = null)
public VmwareAnomalies(String name, VmwareAnomaliesArgs args)
public VmwareAnomalies(String name, VmwareAnomaliesArgs args, CustomResourceOptions options)
type: dynatrace:VmwareAnomalies
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 VmwareAnomaliesArgs
- 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 VmwareAnomaliesArgs
- 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 VmwareAnomaliesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VmwareAnomaliesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VmwareAnomaliesArgs
- 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 vmwareAnomaliesResource = new Dynatrace.VmwareAnomalies("vmwareAnomaliesResource", new()
{
DroppedPacketsDetection = new Dynatrace.Inputs.VmwareAnomaliesDroppedPacketsDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesDroppedPacketsDetectionCustomThresholdsArgs
{
DroppedPacketsPerSecond = 0,
},
DetectionMode = "string",
},
EsxiHighCpuDetection = new Dynatrace.Inputs.VmwareAnomaliesEsxiHighCpuDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesEsxiHighCpuDetectionCustomThresholdsArgs
{
CpuPeakPercentage = 0,
CpuUsagePercentage = 0,
VmCpuReadyPercentage = 0,
},
DetectionMode = "string",
},
EsxiHighMemoryDetection = new Dynatrace.Inputs.VmwareAnomaliesEsxiHighMemoryDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholdsArgs
{
CompressionDecompressionRate = 0,
},
DetectionMode = "string",
},
GuestCpuLimitDetection = new Dynatrace.Inputs.VmwareAnomaliesGuestCpuLimitDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesGuestCpuLimitDetectionCustomThresholdsArgs
{
HostCpuUsagePercentage = 0,
VmCpuReadyPercentage = 0,
VmCpuUsagePercentage = 0,
},
DetectionMode = "string",
},
LowDatastoreSpaceDetection = new Dynatrace.Inputs.VmwareAnomaliesLowDatastoreSpaceDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholdsArgs
{
FreeSpacePercentage = 0,
},
DetectionMode = "string",
},
OverloadedStorageDetection = new Dynatrace.Inputs.VmwareAnomaliesOverloadedStorageDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesOverloadedStorageDetectionCustomThresholdsArgs
{
CommandAbortsNumber = 0,
},
DetectionMode = "string",
},
SlowPhysicalStorageDetection = new Dynatrace.Inputs.VmwareAnomaliesSlowPhysicalStorageDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholdsArgs
{
AvgReadWriteLatency = 0,
PeakReadWriteLatency = 0,
},
DetectionMode = "string",
},
UndersizedStorageDetection = new Dynatrace.Inputs.VmwareAnomaliesUndersizedStorageDetectionArgs
{
Enabled = false,
CustomThresholds = new Dynatrace.Inputs.VmwareAnomaliesUndersizedStorageDetectionCustomThresholdsArgs
{
AverageQueueCommandLatency = 0,
PeakQueueCommandLatency = 0,
},
DetectionMode = "string",
},
});
example, err := dynatrace.NewVmwareAnomalies(ctx, "vmwareAnomaliesResource", &dynatrace.VmwareAnomaliesArgs{
DroppedPacketsDetection: &dynatrace.VmwareAnomaliesDroppedPacketsDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesDroppedPacketsDetectionCustomThresholdsArgs{
DroppedPacketsPerSecond: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
EsxiHighCpuDetection: &dynatrace.VmwareAnomaliesEsxiHighCpuDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesEsxiHighCpuDetectionCustomThresholdsArgs{
CpuPeakPercentage: pulumi.Int(0),
CpuUsagePercentage: pulumi.Int(0),
VmCpuReadyPercentage: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
EsxiHighMemoryDetection: &dynatrace.VmwareAnomaliesEsxiHighMemoryDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholdsArgs{
CompressionDecompressionRate: pulumi.Float64(0),
},
DetectionMode: pulumi.String("string"),
},
GuestCpuLimitDetection: &dynatrace.VmwareAnomaliesGuestCpuLimitDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesGuestCpuLimitDetectionCustomThresholdsArgs{
HostCpuUsagePercentage: pulumi.Int(0),
VmCpuReadyPercentage: pulumi.Int(0),
VmCpuUsagePercentage: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
LowDatastoreSpaceDetection: &dynatrace.VmwareAnomaliesLowDatastoreSpaceDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholdsArgs{
FreeSpacePercentage: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
OverloadedStorageDetection: &dynatrace.VmwareAnomaliesOverloadedStorageDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesOverloadedStorageDetectionCustomThresholdsArgs{
CommandAbortsNumber: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
SlowPhysicalStorageDetection: &dynatrace.VmwareAnomaliesSlowPhysicalStorageDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholdsArgs{
AvgReadWriteLatency: pulumi.Int(0),
PeakReadWriteLatency: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
UndersizedStorageDetection: &dynatrace.VmwareAnomaliesUndersizedStorageDetectionArgs{
Enabled: pulumi.Bool(false),
CustomThresholds: &dynatrace.VmwareAnomaliesUndersizedStorageDetectionCustomThresholdsArgs{
AverageQueueCommandLatency: pulumi.Int(0),
PeakQueueCommandLatency: pulumi.Int(0),
},
DetectionMode: pulumi.String("string"),
},
})
var vmwareAnomaliesResource = new VmwareAnomalies("vmwareAnomaliesResource", VmwareAnomaliesArgs.builder()
.droppedPacketsDetection(VmwareAnomaliesDroppedPacketsDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesDroppedPacketsDetectionCustomThresholdsArgs.builder()
.droppedPacketsPerSecond(0)
.build())
.detectionMode("string")
.build())
.esxiHighCpuDetection(VmwareAnomaliesEsxiHighCpuDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesEsxiHighCpuDetectionCustomThresholdsArgs.builder()
.cpuPeakPercentage(0)
.cpuUsagePercentage(0)
.vmCpuReadyPercentage(0)
.build())
.detectionMode("string")
.build())
.esxiHighMemoryDetection(VmwareAnomaliesEsxiHighMemoryDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholdsArgs.builder()
.compressionDecompressionRate(0)
.build())
.detectionMode("string")
.build())
.guestCpuLimitDetection(VmwareAnomaliesGuestCpuLimitDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesGuestCpuLimitDetectionCustomThresholdsArgs.builder()
.hostCpuUsagePercentage(0)
.vmCpuReadyPercentage(0)
.vmCpuUsagePercentage(0)
.build())
.detectionMode("string")
.build())
.lowDatastoreSpaceDetection(VmwareAnomaliesLowDatastoreSpaceDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholdsArgs.builder()
.freeSpacePercentage(0)
.build())
.detectionMode("string")
.build())
.overloadedStorageDetection(VmwareAnomaliesOverloadedStorageDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesOverloadedStorageDetectionCustomThresholdsArgs.builder()
.commandAbortsNumber(0)
.build())
.detectionMode("string")
.build())
.slowPhysicalStorageDetection(VmwareAnomaliesSlowPhysicalStorageDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholdsArgs.builder()
.avgReadWriteLatency(0)
.peakReadWriteLatency(0)
.build())
.detectionMode("string")
.build())
.undersizedStorageDetection(VmwareAnomaliesUndersizedStorageDetectionArgs.builder()
.enabled(false)
.customThresholds(VmwareAnomaliesUndersizedStorageDetectionCustomThresholdsArgs.builder()
.averageQueueCommandLatency(0)
.peakQueueCommandLatency(0)
.build())
.detectionMode("string")
.build())
.build());
vmware_anomalies_resource = dynatrace.VmwareAnomalies("vmwareAnomaliesResource",
dropped_packets_detection=dynatrace.VmwareAnomaliesDroppedPacketsDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesDroppedPacketsDetectionCustomThresholdsArgs(
dropped_packets_per_second=0,
),
detection_mode="string",
),
esxi_high_cpu_detection=dynatrace.VmwareAnomaliesEsxiHighCpuDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesEsxiHighCpuDetectionCustomThresholdsArgs(
cpu_peak_percentage=0,
cpu_usage_percentage=0,
vm_cpu_ready_percentage=0,
),
detection_mode="string",
),
esxi_high_memory_detection=dynatrace.VmwareAnomaliesEsxiHighMemoryDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholdsArgs(
compression_decompression_rate=0,
),
detection_mode="string",
),
guest_cpu_limit_detection=dynatrace.VmwareAnomaliesGuestCpuLimitDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesGuestCpuLimitDetectionCustomThresholdsArgs(
host_cpu_usage_percentage=0,
vm_cpu_ready_percentage=0,
vm_cpu_usage_percentage=0,
),
detection_mode="string",
),
low_datastore_space_detection=dynatrace.VmwareAnomaliesLowDatastoreSpaceDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholdsArgs(
free_space_percentage=0,
),
detection_mode="string",
),
overloaded_storage_detection=dynatrace.VmwareAnomaliesOverloadedStorageDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesOverloadedStorageDetectionCustomThresholdsArgs(
command_aborts_number=0,
),
detection_mode="string",
),
slow_physical_storage_detection=dynatrace.VmwareAnomaliesSlowPhysicalStorageDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholdsArgs(
avg_read_write_latency=0,
peak_read_write_latency=0,
),
detection_mode="string",
),
undersized_storage_detection=dynatrace.VmwareAnomaliesUndersizedStorageDetectionArgs(
enabled=False,
custom_thresholds=dynatrace.VmwareAnomaliesUndersizedStorageDetectionCustomThresholdsArgs(
average_queue_command_latency=0,
peak_queue_command_latency=0,
),
detection_mode="string",
))
const vmwareAnomaliesResource = new dynatrace.VmwareAnomalies("vmwareAnomaliesResource", {
droppedPacketsDetection: {
enabled: false,
customThresholds: {
droppedPacketsPerSecond: 0,
},
detectionMode: "string",
},
esxiHighCpuDetection: {
enabled: false,
customThresholds: {
cpuPeakPercentage: 0,
cpuUsagePercentage: 0,
vmCpuReadyPercentage: 0,
},
detectionMode: "string",
},
esxiHighMemoryDetection: {
enabled: false,
customThresholds: {
compressionDecompressionRate: 0,
},
detectionMode: "string",
},
guestCpuLimitDetection: {
enabled: false,
customThresholds: {
hostCpuUsagePercentage: 0,
vmCpuReadyPercentage: 0,
vmCpuUsagePercentage: 0,
},
detectionMode: "string",
},
lowDatastoreSpaceDetection: {
enabled: false,
customThresholds: {
freeSpacePercentage: 0,
},
detectionMode: "string",
},
overloadedStorageDetection: {
enabled: false,
customThresholds: {
commandAbortsNumber: 0,
},
detectionMode: "string",
},
slowPhysicalStorageDetection: {
enabled: false,
customThresholds: {
avgReadWriteLatency: 0,
peakReadWriteLatency: 0,
},
detectionMode: "string",
},
undersizedStorageDetection: {
enabled: false,
customThresholds: {
averageQueueCommandLatency: 0,
peakQueueCommandLatency: 0,
},
detectionMode: "string",
},
});
type: dynatrace:VmwareAnomalies
properties:
droppedPacketsDetection:
customThresholds:
droppedPacketsPerSecond: 0
detectionMode: string
enabled: false
esxiHighCpuDetection:
customThresholds:
cpuPeakPercentage: 0
cpuUsagePercentage: 0
vmCpuReadyPercentage: 0
detectionMode: string
enabled: false
esxiHighMemoryDetection:
customThresholds:
compressionDecompressionRate: 0
detectionMode: string
enabled: false
guestCpuLimitDetection:
customThresholds:
hostCpuUsagePercentage: 0
vmCpuReadyPercentage: 0
vmCpuUsagePercentage: 0
detectionMode: string
enabled: false
lowDatastoreSpaceDetection:
customThresholds:
freeSpacePercentage: 0
detectionMode: string
enabled: false
overloadedStorageDetection:
customThresholds:
commandAbortsNumber: 0
detectionMode: string
enabled: false
slowPhysicalStorageDetection:
customThresholds:
avgReadWriteLatency: 0
peakReadWriteLatency: 0
detectionMode: string
enabled: false
undersizedStorageDetection:
customThresholds:
averageQueueCommandLatency: 0
peakQueueCommandLatency: 0
detectionMode: string
enabled: false
VmwareAnomalies 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 VmwareAnomalies resource accepts the following input properties:
- Dropped
Packets Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Dropped Packets Detection - no documentation available
- Esxi
High Pulumiverse.Cpu Detection Dynatrace. Inputs. Vmware Anomalies Esxi High Cpu Detection - no documentation available
- Esxi
High Pulumiverse.Memory Detection Dynatrace. Inputs. Vmware Anomalies Esxi High Memory Detection - no documentation available
- Guest
Cpu Pulumiverse.Limit Detection Dynatrace. Inputs. Vmware Anomalies Guest Cpu Limit Detection - no documentation available
- Low
Datastore Pulumiverse.Space Detection Dynatrace. Inputs. Vmware Anomalies Low Datastore Space Detection - no documentation available
- Overloaded
Storage Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Overloaded Storage Detection - no documentation available
- Slow
Physical Pulumiverse.Storage Detection Dynatrace. Inputs. Vmware Anomalies Slow Physical Storage Detection - no documentation available
- Undersized
Storage Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Undersized Storage Detection - no documentation available
- Dropped
Packets VmwareDetection Anomalies Dropped Packets Detection Args - no documentation available
- Esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection Args - no documentation available
- Esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection Args - no documentation available
- Guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection Args - no documentation available
- Low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection Args - no documentation available
- Overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection Args - no documentation available
- Slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection Args - no documentation available
- Undersized
Storage VmwareDetection Anomalies Undersized Storage Detection Args - no documentation available
- dropped
Packets VmwareDetection Anomalies Dropped Packets Detection - no documentation available
- esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection - no documentation available
- esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection - no documentation available
- guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection - no documentation available
- low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection - no documentation available
- overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection - no documentation available
- slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection - no documentation available
- undersized
Storage VmwareDetection Anomalies Undersized Storage Detection - no documentation available
- dropped
Packets VmwareDetection Anomalies Dropped Packets Detection - no documentation available
- esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection - no documentation available
- esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection - no documentation available
- guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection - no documentation available
- low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection - no documentation available
- overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection - no documentation available
- slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection - no documentation available
- undersized
Storage VmwareDetection Anomalies Undersized Storage Detection - no documentation available
- dropped_
packets_ Vmwaredetection Anomalies Dropped Packets Detection Args - no documentation available
- esxi_
high_ Vmwarecpu_ detection Anomalies Esxi High Cpu Detection Args - no documentation available
- esxi_
high_ Vmwarememory_ detection Anomalies Esxi High Memory Detection Args - no documentation available
- guest_
cpu_ Vmwarelimit_ detection Anomalies Guest Cpu Limit Detection Args - no documentation available
- low_
datastore_ Vmwarespace_ detection Anomalies Low Datastore Space Detection Args - no documentation available
- overloaded_
storage_ Vmwaredetection Anomalies Overloaded Storage Detection Args - no documentation available
- slow_
physical_ Vmwarestorage_ detection Anomalies Slow Physical Storage Detection Args - no documentation available
- undersized_
storage_ Vmwaredetection Anomalies Undersized Storage Detection Args - no documentation available
- dropped
Packets Property MapDetection - no documentation available
- esxi
High Property MapCpu Detection - no documentation available
- esxi
High Property MapMemory Detection - no documentation available
- guest
Cpu Property MapLimit Detection - no documentation available
- low
Datastore Property MapSpace Detection - no documentation available
- overloaded
Storage Property MapDetection - no documentation available
- slow
Physical Property MapStorage Detection - no documentation available
- undersized
Storage Property MapDetection - no documentation available
Outputs
All input properties are implicitly available as output properties. Additionally, the VmwareAnomalies 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 VmwareAnomalies Resource
Get an existing VmwareAnomalies 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?: VmwareAnomaliesState, opts?: CustomResourceOptions): VmwareAnomalies
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
dropped_packets_detection: Optional[VmwareAnomaliesDroppedPacketsDetectionArgs] = None,
esxi_high_cpu_detection: Optional[VmwareAnomaliesEsxiHighCpuDetectionArgs] = None,
esxi_high_memory_detection: Optional[VmwareAnomaliesEsxiHighMemoryDetectionArgs] = None,
guest_cpu_limit_detection: Optional[VmwareAnomaliesGuestCpuLimitDetectionArgs] = None,
low_datastore_space_detection: Optional[VmwareAnomaliesLowDatastoreSpaceDetectionArgs] = None,
overloaded_storage_detection: Optional[VmwareAnomaliesOverloadedStorageDetectionArgs] = None,
slow_physical_storage_detection: Optional[VmwareAnomaliesSlowPhysicalStorageDetectionArgs] = None,
undersized_storage_detection: Optional[VmwareAnomaliesUndersizedStorageDetectionArgs] = None) -> VmwareAnomalies
func GetVmwareAnomalies(ctx *Context, name string, id IDInput, state *VmwareAnomaliesState, opts ...ResourceOption) (*VmwareAnomalies, error)
public static VmwareAnomalies Get(string name, Input<string> id, VmwareAnomaliesState? state, CustomResourceOptions? opts = null)
public static VmwareAnomalies get(String name, Output<String> id, VmwareAnomaliesState 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.
- Dropped
Packets Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Dropped Packets Detection - no documentation available
- Esxi
High Pulumiverse.Cpu Detection Dynatrace. Inputs. Vmware Anomalies Esxi High Cpu Detection - no documentation available
- Esxi
High Pulumiverse.Memory Detection Dynatrace. Inputs. Vmware Anomalies Esxi High Memory Detection - no documentation available
- Guest
Cpu Pulumiverse.Limit Detection Dynatrace. Inputs. Vmware Anomalies Guest Cpu Limit Detection - no documentation available
- Low
Datastore Pulumiverse.Space Detection Dynatrace. Inputs. Vmware Anomalies Low Datastore Space Detection - no documentation available
- Overloaded
Storage Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Overloaded Storage Detection - no documentation available
- Slow
Physical Pulumiverse.Storage Detection Dynatrace. Inputs. Vmware Anomalies Slow Physical Storage Detection - no documentation available
- Undersized
Storage Pulumiverse.Detection Dynatrace. Inputs. Vmware Anomalies Undersized Storage Detection - no documentation available
- Dropped
Packets VmwareDetection Anomalies Dropped Packets Detection Args - no documentation available
- Esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection Args - no documentation available
- Esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection Args - no documentation available
- Guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection Args - no documentation available
- Low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection Args - no documentation available
- Overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection Args - no documentation available
- Slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection Args - no documentation available
- Undersized
Storage VmwareDetection Anomalies Undersized Storage Detection Args - no documentation available
- dropped
Packets VmwareDetection Anomalies Dropped Packets Detection - no documentation available
- esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection - no documentation available
- esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection - no documentation available
- guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection - no documentation available
- low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection - no documentation available
- overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection - no documentation available
- slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection - no documentation available
- undersized
Storage VmwareDetection Anomalies Undersized Storage Detection - no documentation available
- dropped
Packets VmwareDetection Anomalies Dropped Packets Detection - no documentation available
- esxi
High VmwareCpu Detection Anomalies Esxi High Cpu Detection - no documentation available
- esxi
High VmwareMemory Detection Anomalies Esxi High Memory Detection - no documentation available
- guest
Cpu VmwareLimit Detection Anomalies Guest Cpu Limit Detection - no documentation available
- low
Datastore VmwareSpace Detection Anomalies Low Datastore Space Detection - no documentation available
- overloaded
Storage VmwareDetection Anomalies Overloaded Storage Detection - no documentation available
- slow
Physical VmwareStorage Detection Anomalies Slow Physical Storage Detection - no documentation available
- undersized
Storage VmwareDetection Anomalies Undersized Storage Detection - no documentation available
- dropped_
packets_ Vmwaredetection Anomalies Dropped Packets Detection Args - no documentation available
- esxi_
high_ Vmwarecpu_ detection Anomalies Esxi High Cpu Detection Args - no documentation available
- esxi_
high_ Vmwarememory_ detection Anomalies Esxi High Memory Detection Args - no documentation available
- guest_
cpu_ Vmwarelimit_ detection Anomalies Guest Cpu Limit Detection Args - no documentation available
- low_
datastore_ Vmwarespace_ detection Anomalies Low Datastore Space Detection Args - no documentation available
- overloaded_
storage_ Vmwaredetection Anomalies Overloaded Storage Detection Args - no documentation available
- slow_
physical_ Vmwarestorage_ detection Anomalies Slow Physical Storage Detection Args - no documentation available
- undersized_
storage_ Vmwaredetection Anomalies Undersized Storage Detection Args - no documentation available
- dropped
Packets Property MapDetection - no documentation available
- esxi
High Property MapCpu Detection - no documentation available
- esxi
High Property MapMemory Detection - no documentation available
- guest
Cpu Property MapLimit Detection - no documentation available
- low
Datastore Property MapSpace Detection - no documentation available
- overloaded
Storage Property MapDetection - no documentation available
- slow
Physical Property MapStorage Detection - no documentation available
- undersized
Storage Property MapDetection - no documentation available
Supporting Types
VmwareAnomaliesDroppedPacketsDetection, VmwareAnomaliesDroppedPacketsDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Dropped Packets Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Dropped Packets Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Dropped Packets Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Dropped Packets Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Dropped Packets Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesDroppedPacketsDetectionCustomThresholds, VmwareAnomaliesDroppedPacketsDetectionCustomThresholdsArgs
- Dropped
Packets intPer Second - Receive/transmit dropped packets rate on NIC is higher than
- Dropped
Packets intPer Second - Receive/transmit dropped packets rate on NIC is higher than
- dropped
Packets IntegerPer Second - Receive/transmit dropped packets rate on NIC is higher than
- dropped
Packets numberPer Second - Receive/transmit dropped packets rate on NIC is higher than
- dropped_
packets_ intper_ second - Receive/transmit dropped packets rate on NIC is higher than
- dropped
Packets NumberPer Second - Receive/transmit dropped packets rate on NIC is higher than
VmwareAnomaliesEsxiHighCpuDetection, VmwareAnomaliesEsxiHighCpuDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Esxi High Cpu Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Esxi High Cpu Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Esxi High Cpu Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Esxi High Cpu Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Esxi High Cpu Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesEsxiHighCpuDetectionCustomThresholds, VmwareAnomaliesEsxiHighCpuDetectionCustomThresholdsArgs
- Cpu
Peak intPercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- Cpu
Usage intPercentage - CPU usage is higher than
- Vm
Cpu intReady Percentage - VM CPU ready is higher than
- Cpu
Peak intPercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- Cpu
Usage intPercentage - CPU usage is higher than
- Vm
Cpu intReady Percentage - VM CPU ready is higher than
- cpu
Peak IntegerPercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- cpu
Usage IntegerPercentage - CPU usage is higher than
- vm
Cpu IntegerReady Percentage - VM CPU ready is higher than
- cpu
Peak numberPercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- cpu
Usage numberPercentage - CPU usage is higher than
- vm
Cpu numberReady Percentage - VM CPU ready is higher than
- cpu_
peak_ intpercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- cpu_
usage_ intpercentage - CPU usage is higher than
- vm_
cpu_ intready_ percentage - VM CPU ready is higher than
- cpu
Peak NumberPercentage - At least one peak occurred when Hypervisor CPU usage was higher than
- cpu
Usage NumberPercentage - CPU usage is higher than
- vm
Cpu NumberReady Percentage - VM CPU ready is higher than
VmwareAnomaliesEsxiHighMemoryDetection, VmwareAnomaliesEsxiHighMemoryDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Esxi High Memory Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Esxi High Memory Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Esxi High Memory Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Esxi High Memory Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Esxi High Memory Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholds, VmwareAnomaliesEsxiHighMemoryDetectionCustomThresholdsArgs
- Compression
Decompression doubleRate - ESXi host swap IN/OUT or compression/decompression rate is higher than
- Compression
Decompression float64Rate - ESXi host swap IN/OUT or compression/decompression rate is higher than
- compression
Decompression DoubleRate - ESXi host swap IN/OUT or compression/decompression rate is higher than
- compression
Decompression numberRate - ESXi host swap IN/OUT or compression/decompression rate is higher than
- compression_
decompression_ floatrate - ESXi host swap IN/OUT or compression/decompression rate is higher than
- compression
Decompression NumberRate - ESXi host swap IN/OUT or compression/decompression rate is higher than
VmwareAnomaliesGuestCpuLimitDetection, VmwareAnomaliesGuestCpuLimitDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Guest Cpu Limit Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Guest Cpu Limit Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Guest Cpu Limit Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Guest Cpu Limit Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Guest Cpu Limit Detection Custom Thresholds - Alert if all three conditions are met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if all three conditions are met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesGuestCpuLimitDetectionCustomThresholds, VmwareAnomaliesGuestCpuLimitDetectionCustomThresholdsArgs
- Host
Cpu intUsage Percentage - Hypervisor CPU usage is higher than
- Vm
Cpu intReady Percentage - VM CPU ready is higher than
- Vm
Cpu intUsage Percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
- Host
Cpu intUsage Percentage - Hypervisor CPU usage is higher than
- Vm
Cpu intReady Percentage - VM CPU ready is higher than
- Vm
Cpu intUsage Percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
- host
Cpu IntegerUsage Percentage - Hypervisor CPU usage is higher than
- vm
Cpu IntegerReady Percentage - VM CPU ready is higher than
- vm
Cpu IntegerUsage Percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
- host
Cpu numberUsage Percentage - Hypervisor CPU usage is higher than
- vm
Cpu numberReady Percentage - VM CPU ready is higher than
- vm
Cpu numberUsage Percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
- host_
cpu_ intusage_ percentage - Hypervisor CPU usage is higher than
- vm_
cpu_ intready_ percentage - VM CPU ready is higher than
- vm_
cpu_ intusage_ percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
- host
Cpu NumberUsage Percentage - Hypervisor CPU usage is higher than
- vm
Cpu NumberReady Percentage - VM CPU ready is higher than
- vm
Cpu NumberUsage Percentage - VM CPU usage (VM CPU Usage Mhz / VM CPU limit in Mhz) is higher than
VmwareAnomaliesLowDatastoreSpaceDetection, VmwareAnomaliesLowDatastoreSpaceDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Low Datastore Space Detection Custom Thresholds - Alert if the condition is met in 1 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Low Datastore Space Detection Custom Thresholds - Alert if the condition is met in 1 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Low Datastore Space Detection Custom Thresholds - Alert if the condition is met in 1 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Low Datastore Space Detection Custom Thresholds - Alert if the condition is met in 1 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Low Datastore Space Detection Custom Thresholds - Alert if the condition is met in 1 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 1 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholds, VmwareAnomaliesLowDatastoreSpaceDetectionCustomThresholdsArgs
- Free
Space intPercentage - Datastore free space is lower than
- Free
Space intPercentage - Datastore free space is lower than
- free
Space IntegerPercentage - Datastore free space is lower than
- free
Space numberPercentage - Datastore free space is lower than
- free_
space_ intpercentage - Datastore free space is lower than
- free
Space NumberPercentage - Datastore free space is lower than
VmwareAnomaliesOverloadedStorageDetection, VmwareAnomaliesOverloadedStorageDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Overloaded Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Overloaded Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Overloaded Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Overloaded Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Overloaded Storage Detection Custom Thresholds - Alert if the condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if the condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesOverloadedStorageDetectionCustomThresholds, VmwareAnomaliesOverloadedStorageDetectionCustomThresholdsArgs
- Command
Aborts intNumber - Number of command aborts is higher than
- Command
Aborts intNumber - Number of command aborts is higher than
- command
Aborts IntegerNumber - Number of command aborts is higher than
- command
Aborts numberNumber - Number of command aborts is higher than
- command_
aborts_ intnumber - Number of command aborts is higher than
- command
Aborts NumberNumber - Number of command aborts is higher than
VmwareAnomaliesSlowPhysicalStorageDetection, VmwareAnomaliesSlowPhysicalStorageDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Slow Physical Storage Detection Custom Thresholds - Alert if any condition is met in 4 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Slow Physical Storage Detection Custom Thresholds - Alert if any condition is met in 4 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Slow Physical Storage Detection Custom Thresholds - Alert if any condition is met in 4 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Slow Physical Storage Detection Custom Thresholds - Alert if any condition is met in 4 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Slow Physical Storage Detection Custom Thresholds - Alert if any condition is met in 4 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if any condition is met in 4 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholds, VmwareAnomaliesSlowPhysicalStorageDetectionCustomThresholdsArgs
- Avg
Read intWrite Latency - Read/write latency is higher than
- Peak
Read intWrite Latency - Peak value for read/write latency is higher than
- Avg
Read intWrite Latency - Read/write latency is higher than
- Peak
Read intWrite Latency - Peak value for read/write latency is higher than
- avg
Read IntegerWrite Latency - Read/write latency is higher than
- peak
Read IntegerWrite Latency - Peak value for read/write latency is higher than
- avg
Read numberWrite Latency - Read/write latency is higher than
- peak
Read numberWrite Latency - Peak value for read/write latency is higher than
- avg_
read_ intwrite_ latency - Read/write latency is higher than
- peak_
read_ intwrite_ latency - Peak value for read/write latency is higher than
- avg
Read NumberWrite Latency - Read/write latency is higher than
- peak
Read NumberWrite Latency - Peak value for read/write latency is higher than
VmwareAnomaliesUndersizedStorageDetection, VmwareAnomaliesUndersizedStorageDetectionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds Pulumiverse.Dynatrace. Inputs. Vmware Anomalies Undersized Storage Detection Custom Thresholds - Alert if any condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Custom
Thresholds VmwareAnomalies Undersized Storage Detection Custom Thresholds - Alert if any condition is met in 3 out of 5 samples
- Detection
Mode string - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Undersized Storage Detection Custom Thresholds - Alert if any condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds VmwareAnomalies Undersized Storage Detection Custom Thresholds - Alert if any condition is met in 3 out of 5 samples
- detection
Mode string - Possible Values:
Auto
,Custom
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - custom_
thresholds VmwareAnomalies Undersized Storage Detection Custom Thresholds - Alert if any condition is met in 3 out of 5 samples
- detection_
mode str - Possible Values:
Auto
,Custom
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - custom
Thresholds Property Map - Alert if any condition is met in 3 out of 5 samples
- detection
Mode String - Possible Values:
Auto
,Custom
VmwareAnomaliesUndersizedStorageDetectionCustomThresholds, VmwareAnomaliesUndersizedStorageDetectionCustomThresholdsArgs
- Average
Queue intCommand Latency - Average queue command latency is higher than
- Peak
Queue intCommand Latency - Peak queue command latency is higher than
- Average
Queue intCommand Latency - Average queue command latency is higher than
- Peak
Queue intCommand Latency - Peak queue command latency is higher than
- average
Queue IntegerCommand Latency - Average queue command latency is higher than
- peak
Queue IntegerCommand Latency - Peak queue command latency is higher than
- average
Queue numberCommand Latency - Average queue command latency is higher than
- peak
Queue numberCommand Latency - Peak queue command latency is higher than
- average_
queue_ intcommand_ latency - Average queue command latency is higher than
- peak_
queue_ intcommand_ latency - Peak queue command latency is higher than
- average
Queue NumberCommand Latency - Average queue command latency is higher than
- peak
Queue NumberCommand Latency - Peak queue command latency is higher than
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.