Dynatrace v0.10.0 published on Friday, Jun 7, 2024 by Pulumiverse
dynatrace.K8sNodeAnomalies
Explore with Pulumi AI
Create K8sNodeAnomalies Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new K8sNodeAnomalies(name: string, args: K8sNodeAnomaliesArgs, opts?: CustomResourceOptions);
@overload
def K8sNodeAnomalies(resource_name: str,
args: K8sNodeAnomaliesArgs,
opts: Optional[ResourceOptions] = None)
@overload
def K8sNodeAnomalies(resource_name: str,
opts: Optional[ResourceOptions] = None,
cpu_requests_saturation: Optional[K8sNodeAnomaliesCpuRequestsSaturationArgs] = None,
memory_requests_saturation: Optional[K8sNodeAnomaliesMemoryRequestsSaturationArgs] = None,
node_problematic_condition: Optional[K8sNodeAnomaliesNodeProblematicConditionArgs] = None,
pods_saturation: Optional[K8sNodeAnomaliesPodsSaturationArgs] = None,
readiness_issues: Optional[K8sNodeAnomaliesReadinessIssuesArgs] = None,
scope: Optional[str] = None)
func NewK8sNodeAnomalies(ctx *Context, name string, args K8sNodeAnomaliesArgs, opts ...ResourceOption) (*K8sNodeAnomalies, error)
public K8sNodeAnomalies(string name, K8sNodeAnomaliesArgs args, CustomResourceOptions? opts = null)
public K8sNodeAnomalies(String name, K8sNodeAnomaliesArgs args)
public K8sNodeAnomalies(String name, K8sNodeAnomaliesArgs args, CustomResourceOptions options)
type: dynatrace:K8sNodeAnomalies
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 K8sNodeAnomaliesArgs
- 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 K8sNodeAnomaliesArgs
- 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 K8sNodeAnomaliesArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args K8sNodeAnomaliesArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args K8sNodeAnomaliesArgs
- 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 k8sNodeAnomaliesResource = new Dynatrace.K8sNodeAnomalies("k8sNodeAnomaliesResource", new()
{
CpuRequestsSaturation = new Dynatrace.Inputs.K8sNodeAnomaliesCpuRequestsSaturationArgs
{
Enabled = false,
Configuration = new Dynatrace.Inputs.K8sNodeAnomaliesCpuRequestsSaturationConfigurationArgs
{
ObservationPeriodInMinutes = 0,
SamplePeriodInMinutes = 0,
Threshold = 0,
},
},
MemoryRequestsSaturation = new Dynatrace.Inputs.K8sNodeAnomaliesMemoryRequestsSaturationArgs
{
Enabled = false,
Configuration = new Dynatrace.Inputs.K8sNodeAnomaliesMemoryRequestsSaturationConfigurationArgs
{
ObservationPeriodInMinutes = 0,
SamplePeriodInMinutes = 0,
Threshold = 0,
},
},
NodeProblematicCondition = new Dynatrace.Inputs.K8sNodeAnomaliesNodeProblematicConditionArgs
{
Enabled = false,
Configuration = new Dynatrace.Inputs.K8sNodeAnomaliesNodeProblematicConditionConfigurationArgs
{
ObservationPeriodInMinutes = 0,
SamplePeriodInMinutes = 0,
},
},
PodsSaturation = new Dynatrace.Inputs.K8sNodeAnomaliesPodsSaturationArgs
{
Enabled = false,
Configuration = new Dynatrace.Inputs.K8sNodeAnomaliesPodsSaturationConfigurationArgs
{
ObservationPeriodInMinutes = 0,
SamplePeriodInMinutes = 0,
Threshold = 0,
},
},
ReadinessIssues = new Dynatrace.Inputs.K8sNodeAnomaliesReadinessIssuesArgs
{
Enabled = false,
Configuration = new Dynatrace.Inputs.K8sNodeAnomaliesReadinessIssuesConfigurationArgs
{
ObservationPeriodInMinutes = 0,
SamplePeriodInMinutes = 0,
},
},
Scope = "string",
});
example, err := dynatrace.NewK8sNodeAnomalies(ctx, "k8sNodeAnomaliesResource", &dynatrace.K8sNodeAnomaliesArgs{
CpuRequestsSaturation: &dynatrace.K8sNodeAnomaliesCpuRequestsSaturationArgs{
Enabled: pulumi.Bool(false),
Configuration: &dynatrace.K8sNodeAnomaliesCpuRequestsSaturationConfigurationArgs{
ObservationPeriodInMinutes: pulumi.Int(0),
SamplePeriodInMinutes: pulumi.Int(0),
Threshold: pulumi.Int(0),
},
},
MemoryRequestsSaturation: &dynatrace.K8sNodeAnomaliesMemoryRequestsSaturationArgs{
Enabled: pulumi.Bool(false),
Configuration: &dynatrace.K8sNodeAnomaliesMemoryRequestsSaturationConfigurationArgs{
ObservationPeriodInMinutes: pulumi.Int(0),
SamplePeriodInMinutes: pulumi.Int(0),
Threshold: pulumi.Int(0),
},
},
NodeProblematicCondition: &dynatrace.K8sNodeAnomaliesNodeProblematicConditionArgs{
Enabled: pulumi.Bool(false),
Configuration: &dynatrace.K8sNodeAnomaliesNodeProblematicConditionConfigurationArgs{
ObservationPeriodInMinutes: pulumi.Int(0),
SamplePeriodInMinutes: pulumi.Int(0),
},
},
PodsSaturation: &dynatrace.K8sNodeAnomaliesPodsSaturationArgs{
Enabled: pulumi.Bool(false),
Configuration: &dynatrace.K8sNodeAnomaliesPodsSaturationConfigurationArgs{
ObservationPeriodInMinutes: pulumi.Int(0),
SamplePeriodInMinutes: pulumi.Int(0),
Threshold: pulumi.Int(0),
},
},
ReadinessIssues: &dynatrace.K8sNodeAnomaliesReadinessIssuesArgs{
Enabled: pulumi.Bool(false),
Configuration: &dynatrace.K8sNodeAnomaliesReadinessIssuesConfigurationArgs{
ObservationPeriodInMinutes: pulumi.Int(0),
SamplePeriodInMinutes: pulumi.Int(0),
},
},
Scope: pulumi.String("string"),
})
var k8sNodeAnomaliesResource = new K8sNodeAnomalies("k8sNodeAnomaliesResource", K8sNodeAnomaliesArgs.builder()
.cpuRequestsSaturation(K8sNodeAnomaliesCpuRequestsSaturationArgs.builder()
.enabled(false)
.configuration(K8sNodeAnomaliesCpuRequestsSaturationConfigurationArgs.builder()
.observationPeriodInMinutes(0)
.samplePeriodInMinutes(0)
.threshold(0)
.build())
.build())
.memoryRequestsSaturation(K8sNodeAnomaliesMemoryRequestsSaturationArgs.builder()
.enabled(false)
.configuration(K8sNodeAnomaliesMemoryRequestsSaturationConfigurationArgs.builder()
.observationPeriodInMinutes(0)
.samplePeriodInMinutes(0)
.threshold(0)
.build())
.build())
.nodeProblematicCondition(K8sNodeAnomaliesNodeProblematicConditionArgs.builder()
.enabled(false)
.configuration(K8sNodeAnomaliesNodeProblematicConditionConfigurationArgs.builder()
.observationPeriodInMinutes(0)
.samplePeriodInMinutes(0)
.build())
.build())
.podsSaturation(K8sNodeAnomaliesPodsSaturationArgs.builder()
.enabled(false)
.configuration(K8sNodeAnomaliesPodsSaturationConfigurationArgs.builder()
.observationPeriodInMinutes(0)
.samplePeriodInMinutes(0)
.threshold(0)
.build())
.build())
.readinessIssues(K8sNodeAnomaliesReadinessIssuesArgs.builder()
.enabled(false)
.configuration(K8sNodeAnomaliesReadinessIssuesConfigurationArgs.builder()
.observationPeriodInMinutes(0)
.samplePeriodInMinutes(0)
.build())
.build())
.scope("string")
.build());
k8s_node_anomalies_resource = dynatrace.K8sNodeAnomalies("k8sNodeAnomaliesResource",
cpu_requests_saturation=dynatrace.K8sNodeAnomaliesCpuRequestsSaturationArgs(
enabled=False,
configuration=dynatrace.K8sNodeAnomaliesCpuRequestsSaturationConfigurationArgs(
observation_period_in_minutes=0,
sample_period_in_minutes=0,
threshold=0,
),
),
memory_requests_saturation=dynatrace.K8sNodeAnomaliesMemoryRequestsSaturationArgs(
enabled=False,
configuration=dynatrace.K8sNodeAnomaliesMemoryRequestsSaturationConfigurationArgs(
observation_period_in_minutes=0,
sample_period_in_minutes=0,
threshold=0,
),
),
node_problematic_condition=dynatrace.K8sNodeAnomaliesNodeProblematicConditionArgs(
enabled=False,
configuration=dynatrace.K8sNodeAnomaliesNodeProblematicConditionConfigurationArgs(
observation_period_in_minutes=0,
sample_period_in_minutes=0,
),
),
pods_saturation=dynatrace.K8sNodeAnomaliesPodsSaturationArgs(
enabled=False,
configuration=dynatrace.K8sNodeAnomaliesPodsSaturationConfigurationArgs(
observation_period_in_minutes=0,
sample_period_in_minutes=0,
threshold=0,
),
),
readiness_issues=dynatrace.K8sNodeAnomaliesReadinessIssuesArgs(
enabled=False,
configuration=dynatrace.K8sNodeAnomaliesReadinessIssuesConfigurationArgs(
observation_period_in_minutes=0,
sample_period_in_minutes=0,
),
),
scope="string")
const k8sNodeAnomaliesResource = new dynatrace.K8sNodeAnomalies("k8sNodeAnomaliesResource", {
cpuRequestsSaturation: {
enabled: false,
configuration: {
observationPeriodInMinutes: 0,
samplePeriodInMinutes: 0,
threshold: 0,
},
},
memoryRequestsSaturation: {
enabled: false,
configuration: {
observationPeriodInMinutes: 0,
samplePeriodInMinutes: 0,
threshold: 0,
},
},
nodeProblematicCondition: {
enabled: false,
configuration: {
observationPeriodInMinutes: 0,
samplePeriodInMinutes: 0,
},
},
podsSaturation: {
enabled: false,
configuration: {
observationPeriodInMinutes: 0,
samplePeriodInMinutes: 0,
threshold: 0,
},
},
readinessIssues: {
enabled: false,
configuration: {
observationPeriodInMinutes: 0,
samplePeriodInMinutes: 0,
},
},
scope: "string",
});
type: dynatrace:K8sNodeAnomalies
properties:
cpuRequestsSaturation:
configuration:
observationPeriodInMinutes: 0
samplePeriodInMinutes: 0
threshold: 0
enabled: false
memoryRequestsSaturation:
configuration:
observationPeriodInMinutes: 0
samplePeriodInMinutes: 0
threshold: 0
enabled: false
nodeProblematicCondition:
configuration:
observationPeriodInMinutes: 0
samplePeriodInMinutes: 0
enabled: false
podsSaturation:
configuration:
observationPeriodInMinutes: 0
samplePeriodInMinutes: 0
threshold: 0
enabled: false
readinessIssues:
configuration:
observationPeriodInMinutes: 0
samplePeriodInMinutes: 0
enabled: false
scope: string
K8sNodeAnomalies 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 K8sNodeAnomalies resource accepts the following input properties:
- Cpu
Requests Pulumiverse.Saturation Dynatrace. Inputs. K8s Node Anomalies Cpu Requests Saturation - no documentation available
- Memory
Requests Pulumiverse.Saturation Dynatrace. Inputs. K8s Node Anomalies Memory Requests Saturation - no documentation available
- Node
Problematic Pulumiverse.Condition Dynatrace. Inputs. K8s Node Anomalies Node Problematic Condition - no documentation available
- Pods
Saturation Pulumiverse.Dynatrace. Inputs. K8s Node Anomalies Pods Saturation - no documentation available
- Readiness
Issues Pulumiverse.Dynatrace. Inputs. K8s Node Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- Scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- Cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation Args - no documentation available
- Memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation Args - no documentation available
- Node
Problematic K8sCondition Node Anomalies Node Problematic Condition Args - no documentation available
- Pods
Saturation K8sNode Anomalies Pods Saturation Args - no documentation available
- Readiness
Issues K8sNode Anomalies Readiness Issues Args - Alerts if node has not been available for a given amount of time
- Scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation - no documentation available
- memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation - no documentation available
- node
Problematic K8sCondition Node Anomalies Node Problematic Condition - no documentation available
- pods
Saturation K8sNode Anomalies Pods Saturation - no documentation available
- readiness
Issues K8sNode Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- scope String
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation - no documentation available
- memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation - no documentation available
- node
Problematic K8sCondition Node Anomalies Node Problematic Condition - no documentation available
- pods
Saturation K8sNode Anomalies Pods Saturation - no documentation available
- readiness
Issues K8sNode Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu_
requests_ K8ssaturation Node Anomalies Cpu Requests Saturation Args - no documentation available
- memory_
requests_ K8ssaturation Node Anomalies Memory Requests Saturation Args - no documentation available
- node_
problematic_ K8scondition Node Anomalies Node Problematic Condition Args - no documentation available
- pods_
saturation K8sNode Anomalies Pods Saturation Args - no documentation available
- readiness_
issues K8sNode Anomalies Readiness Issues Args - Alerts if node has not been available for a given amount of time
- scope str
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests Property MapSaturation - no documentation available
- memory
Requests Property MapSaturation - no documentation available
- node
Problematic Property MapCondition - no documentation available
- pods
Saturation Property Map - no documentation available
- readiness
Issues Property Map - Alerts if node has not been available for a given amount of time
- scope String
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the K8sNodeAnomalies 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 K8sNodeAnomalies Resource
Get an existing K8sNodeAnomalies 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?: K8sNodeAnomaliesState, opts?: CustomResourceOptions): K8sNodeAnomalies
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cpu_requests_saturation: Optional[K8sNodeAnomaliesCpuRequestsSaturationArgs] = None,
memory_requests_saturation: Optional[K8sNodeAnomaliesMemoryRequestsSaturationArgs] = None,
node_problematic_condition: Optional[K8sNodeAnomaliesNodeProblematicConditionArgs] = None,
pods_saturation: Optional[K8sNodeAnomaliesPodsSaturationArgs] = None,
readiness_issues: Optional[K8sNodeAnomaliesReadinessIssuesArgs] = None,
scope: Optional[str] = None) -> K8sNodeAnomalies
func GetK8sNodeAnomalies(ctx *Context, name string, id IDInput, state *K8sNodeAnomaliesState, opts ...ResourceOption) (*K8sNodeAnomalies, error)
public static K8sNodeAnomalies Get(string name, Input<string> id, K8sNodeAnomaliesState? state, CustomResourceOptions? opts = null)
public static K8sNodeAnomalies get(String name, Output<String> id, K8sNodeAnomaliesState 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.
- Cpu
Requests Pulumiverse.Saturation Dynatrace. Inputs. K8s Node Anomalies Cpu Requests Saturation - no documentation available
- Memory
Requests Pulumiverse.Saturation Dynatrace. Inputs. K8s Node Anomalies Memory Requests Saturation - no documentation available
- Node
Problematic Pulumiverse.Condition Dynatrace. Inputs. K8s Node Anomalies Node Problematic Condition - no documentation available
- Pods
Saturation Pulumiverse.Dynatrace. Inputs. K8s Node Anomalies Pods Saturation - no documentation available
- Readiness
Issues Pulumiverse.Dynatrace. Inputs. K8s Node Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- Scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- Cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation Args - no documentation available
- Memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation Args - no documentation available
- Node
Problematic K8sCondition Node Anomalies Node Problematic Condition Args - no documentation available
- Pods
Saturation K8sNode Anomalies Pods Saturation Args - no documentation available
- Readiness
Issues K8sNode Anomalies Readiness Issues Args - Alerts if node has not been available for a given amount of time
- Scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation - no documentation available
- memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation - no documentation available
- node
Problematic K8sCondition Node Anomalies Node Problematic Condition - no documentation available
- pods
Saturation K8sNode Anomalies Pods Saturation - no documentation available
- readiness
Issues K8sNode Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- scope String
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests K8sSaturation Node Anomalies Cpu Requests Saturation - no documentation available
- memory
Requests K8sSaturation Node Anomalies Memory Requests Saturation - no documentation available
- node
Problematic K8sCondition Node Anomalies Node Problematic Condition - no documentation available
- pods
Saturation K8sNode Anomalies Pods Saturation - no documentation available
- readiness
Issues K8sNode Anomalies Readiness Issues - Alerts if node has not been available for a given amount of time
- scope string
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu_
requests_ K8ssaturation Node Anomalies Cpu Requests Saturation Args - no documentation available
- memory_
requests_ K8ssaturation Node Anomalies Memory Requests Saturation Args - no documentation available
- node_
problematic_ K8scondition Node Anomalies Node Problematic Condition Args - no documentation available
- pods_
saturation K8sNode Anomalies Pods Saturation Args - no documentation available
- readiness_
issues K8sNode Anomalies Readiness Issues Args - Alerts if node has not been available for a given amount of time
- scope str
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
- cpu
Requests Property MapSaturation - no documentation available
- memory
Requests Property MapSaturation - no documentation available
- node
Problematic Property MapCondition - no documentation available
- pods
Saturation Property Map - no documentation available
- readiness
Issues Property Map - Alerts if node has not been available for a given amount of time
- scope String
- The scope of this setting (KUBERNETES_CLUSTER). Omit this property if you want to cover the whole environment.
Supporting Types
K8sNodeAnomaliesCpuRequestsSaturation, K8sNodeAnomaliesCpuRequestsSaturationArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
Pulumiverse.
Dynatrace. Inputs. K8s Node Anomalies Cpu Requests Saturation Configuration - Alert if
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
K8s
Node Anomalies Cpu Requests Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Cpu Requests Saturation Configuration - Alert if
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Cpu Requests Saturation Configuration - Alert if
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Cpu Requests Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration Property Map
- Alert if
K8sNodeAnomaliesCpuRequestsSaturationConfiguration, K8sNodeAnomaliesCpuRequestsSaturationConfigurationArgs
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node CPU capacity for at least
- Threshold int
- amount of requested CPU is higher than
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node CPU capacity for at least
- Threshold int
- amount of requested CPU is higher than
- observation
Period IntegerIn Minutes - within the last
- sample
Period IntegerIn Minutes - of node CPU capacity for at least
- threshold Integer
- amount of requested CPU is higher than
- observation
Period numberIn Minutes - within the last
- sample
Period numberIn Minutes - of node CPU capacity for at least
- threshold number
- amount of requested CPU is higher than
- observation_
period_ intin_ minutes - within the last
- sample_
period_ intin_ minutes - of node CPU capacity for at least
- threshold int
- amount of requested CPU is higher than
- observation
Period NumberIn Minutes - within the last
- sample
Period NumberIn Minutes - of node CPU capacity for at least
- threshold Number
- amount of requested CPU is higher than
K8sNodeAnomaliesMemoryRequestsSaturation, K8sNodeAnomaliesMemoryRequestsSaturationArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
Pulumiverse.
Dynatrace. Inputs. K8s Node Anomalies Memory Requests Saturation Configuration - Alert if
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
K8s
Node Anomalies Memory Requests Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Memory Requests Saturation Configuration - Alert if
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Memory Requests Saturation Configuration - Alert if
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Memory Requests Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration Property Map
- Alert if
K8sNodeAnomaliesMemoryRequestsSaturationConfiguration, K8sNodeAnomaliesMemoryRequestsSaturationConfigurationArgs
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node memory capacity for at least
- Threshold int
- amount of requested memory is higher than
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node memory capacity for at least
- Threshold int
- amount of requested memory is higher than
- observation
Period IntegerIn Minutes - within the last
- sample
Period IntegerIn Minutes - of node memory capacity for at least
- threshold Integer
- amount of requested memory is higher than
- observation
Period numberIn Minutes - within the last
- sample
Period numberIn Minutes - of node memory capacity for at least
- threshold number
- amount of requested memory is higher than
- observation_
period_ intin_ minutes - within the last
- sample_
period_ intin_ minutes - of node memory capacity for at least
- threshold int
- amount of requested memory is higher than
- observation
Period NumberIn Minutes - within the last
- sample
Period NumberIn Minutes - of node memory capacity for at least
- threshold Number
- amount of requested memory is higher than
K8sNodeAnomaliesNodeProblematicCondition, K8sNodeAnomaliesNodeProblematicConditionArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
Pulumiverse.
Dynatrace. Inputs. K8s Node Anomalies Node Problematic Condition Configuration - Alert if
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
K8s
Node Anomalies Node Problematic Condition Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Node Problematic Condition Configuration - Alert if
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Node Problematic Condition Configuration - Alert if
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Node Problematic Condition Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration Property Map
- Alert if
K8sNodeAnomaliesNodeProblematicConditionConfiguration, K8sNodeAnomaliesNodeProblematicConditionConfigurationArgs
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - node has problematic conditions for at least
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - node has problematic conditions for at least
- observation
Period IntegerIn Minutes - within the last
- sample
Period IntegerIn Minutes - node has problematic conditions for at least
- observation
Period numberIn Minutes - within the last
- sample
Period numberIn Minutes - node has problematic conditions for at least
- observation_
period_ intin_ minutes - within the last
- sample_
period_ intin_ minutes - node has problematic conditions for at least
- observation
Period NumberIn Minutes - within the last
- sample
Period NumberIn Minutes - node has problematic conditions for at least
K8sNodeAnomaliesPodsSaturation, K8sNodeAnomaliesPodsSaturationArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
Pulumiverse.
Dynatrace. Inputs. K8s Node Anomalies Pods Saturation Configuration - Alert if
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
K8s
Node Anomalies Pods Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Pods Saturation Configuration - Alert if
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Pods Saturation Configuration - Alert if
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Pods Saturation Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration Property Map
- Alert if
K8sNodeAnomaliesPodsSaturationConfiguration, K8sNodeAnomaliesPodsSaturationConfigurationArgs
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node capacity for at least
- Threshold int
- number of pods running on node is higher than
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - of node capacity for at least
- Threshold int
- number of pods running on node is higher than
- observation
Period IntegerIn Minutes - within the last
- sample
Period IntegerIn Minutes - of node capacity for at least
- threshold Integer
- number of pods running on node is higher than
- observation
Period numberIn Minutes - within the last
- sample
Period numberIn Minutes - of node capacity for at least
- threshold number
- number of pods running on node is higher than
- observation_
period_ intin_ minutes - within the last
- sample_
period_ intin_ minutes - of node capacity for at least
- threshold int
- number of pods running on node is higher than
- observation
Period NumberIn Minutes - within the last
- sample
Period NumberIn Minutes - of node capacity for at least
- threshold Number
- number of pods running on node is higher than
K8sNodeAnomaliesReadinessIssues, K8sNodeAnomaliesReadinessIssuesArgs
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
Pulumiverse.
Dynatrace. Inputs. K8s Node Anomalies Readiness Issues Configuration - Alert if
- Enabled bool
- This setting is enabled (
true
) or disabled (false
) - Configuration
K8s
Node Anomalies Readiness Issues Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Readiness Issues Configuration - Alert if
- enabled boolean
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Readiness Issues Configuration - Alert if
- enabled bool
- This setting is enabled (
true
) or disabled (false
) - configuration
K8s
Node Anomalies Readiness Issues Configuration - Alert if
- enabled Boolean
- This setting is enabled (
true
) or disabled (false
) - configuration Property Map
- Alert if
K8sNodeAnomaliesReadinessIssuesConfiguration, K8sNodeAnomaliesReadinessIssuesConfigurationArgs
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - node is not ready for at least
- Observation
Period intIn Minutes - within the last
- Sample
Period intIn Minutes - node is not ready for at least
- observation
Period IntegerIn Minutes - within the last
- sample
Period IntegerIn Minutes - node is not ready for at least
- observation
Period numberIn Minutes - within the last
- sample
Period numberIn Minutes - node is not ready for at least
- observation_
period_ intin_ minutes - within the last
- sample_
period_ intin_ minutes - node is not ready for at least
- observation
Period NumberIn Minutes - within the last
- sample
Period NumberIn Minutes - node is not ready for at least
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.