dynatrace.CloudappWorkloaddetection
Explore with Pulumi AI
Create CloudappWorkloaddetection Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new CloudappWorkloaddetection(name: string, args: CloudappWorkloaddetectionArgs, opts?: CustomResourceOptions);
@overload
def CloudappWorkloaddetection(resource_name: str,
args: CloudappWorkloaddetectionArgs,
opts: Optional[ResourceOptions] = None)
@overload
def CloudappWorkloaddetection(resource_name: str,
opts: Optional[ResourceOptions] = None,
cloud_foundry: Optional[CloudappWorkloaddetectionCloudFoundryArgs] = None,
docker: Optional[CloudappWorkloaddetectionDockerArgs] = None,
kubernetes: Optional[CloudappWorkloaddetectionKubernetesArgs] = None,
serverless: Optional[CloudappWorkloaddetectionServerlessArgs] = None)
func NewCloudappWorkloaddetection(ctx *Context, name string, args CloudappWorkloaddetectionArgs, opts ...ResourceOption) (*CloudappWorkloaddetection, error)
public CloudappWorkloaddetection(string name, CloudappWorkloaddetectionArgs args, CustomResourceOptions? opts = null)
public CloudappWorkloaddetection(String name, CloudappWorkloaddetectionArgs args)
public CloudappWorkloaddetection(String name, CloudappWorkloaddetectionArgs args, CustomResourceOptions options)
type: dynatrace:CloudappWorkloaddetection
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. CloudappWorkloaddetectionArgs - 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. CloudappWorkloaddetectionArgs - 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. CloudappWorkloaddetectionArgs - 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. CloudappWorkloaddetectionArgs - 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. CloudappWorkloaddetectionArgs - 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 cloudappWorkloaddetectionResource = new Dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource", new()
{
CloudFoundry = new Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundryArgs
{
Enabled = false,
},
Docker = new Dynatrace.Inputs.CloudappWorkloaddetectionDockerArgs
{
Enabled = false,
},
Kubernetes = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesArgs
{
Enabled = false,
Filters = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersArgs
{
Filters = new[]
{
new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterArgs
{
Enabled = false,
InclusionToggles = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs
{
IncBasepod = false,
IncContainer = false,
IncNamespace = false,
IncProduct = false,
IncStage = false,
},
MatchFilter = new Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs
{
MatchOperator = "string",
Namespace = "string",
},
},
},
},
},
Serverless = new Dynatrace.Inputs.CloudappWorkloaddetectionServerlessArgs
{
Enabled = false,
},
});
example, err := dynatrace.NewCloudappWorkloaddetection(ctx, "cloudappWorkloaddetectionResource", &dynatrace.CloudappWorkloaddetectionArgs{
CloudFoundry: &dynatrace.CloudappWorkloaddetectionCloudFoundryArgs{
Enabled: pulumi.Bool(false),
},
Docker: &dynatrace.CloudappWorkloaddetectionDockerArgs{
Enabled: pulumi.Bool(false),
},
Kubernetes: &dynatrace.CloudappWorkloaddetectionKubernetesArgs{
Enabled: pulumi.Bool(false),
Filters: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersArgs{
Filters: dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArray{
&dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArgs{
Enabled: pulumi.Bool(false),
InclusionToggles: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs{
IncBasepod: pulumi.Bool(false),
IncContainer: pulumi.Bool(false),
IncNamespace: pulumi.Bool(false),
IncProduct: pulumi.Bool(false),
IncStage: pulumi.Bool(false),
},
MatchFilter: &dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs{
MatchOperator: pulumi.String("string"),
Namespace: pulumi.String("string"),
},
},
},
},
},
Serverless: &dynatrace.CloudappWorkloaddetectionServerlessArgs{
Enabled: pulumi.Bool(false),
},
})
var cloudappWorkloaddetectionResource = new CloudappWorkloaddetection("cloudappWorkloaddetectionResource", CloudappWorkloaddetectionArgs.builder()
.cloudFoundry(CloudappWorkloaddetectionCloudFoundryArgs.builder()
.enabled(false)
.build())
.docker(CloudappWorkloaddetectionDockerArgs.builder()
.enabled(false)
.build())
.kubernetes(CloudappWorkloaddetectionKubernetesArgs.builder()
.enabled(false)
.filters(CloudappWorkloaddetectionKubernetesFiltersArgs.builder()
.filters(CloudappWorkloaddetectionKubernetesFiltersFilterArgs.builder()
.enabled(false)
.inclusionToggles(CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs.builder()
.incBasepod(false)
.incContainer(false)
.incNamespace(false)
.incProduct(false)
.incStage(false)
.build())
.matchFilter(CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs.builder()
.matchOperator("string")
.namespace("string")
.build())
.build())
.build())
.build())
.serverless(CloudappWorkloaddetectionServerlessArgs.builder()
.enabled(false)
.build())
.build());
cloudapp_workloaddetection_resource = dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource",
cloud_foundry={
"enabled": False,
},
docker={
"enabled": False,
},
kubernetes={
"enabled": False,
"filters": {
"filters": [{
"enabled": False,
"inclusion_toggles": {
"inc_basepod": False,
"inc_container": False,
"inc_namespace": False,
"inc_product": False,
"inc_stage": False,
},
"match_filter": {
"match_operator": "string",
"namespace": "string",
},
}],
},
},
serverless={
"enabled": False,
})
const cloudappWorkloaddetectionResource = new dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource", {
cloudFoundry: {
enabled: false,
},
docker: {
enabled: false,
},
kubernetes: {
enabled: false,
filters: {
filters: [{
enabled: false,
inclusionToggles: {
incBasepod: false,
incContainer: false,
incNamespace: false,
incProduct: false,
incStage: false,
},
matchFilter: {
matchOperator: "string",
namespace: "string",
},
}],
},
},
serverless: {
enabled: false,
},
});
type: dynatrace:CloudappWorkloaddetection
properties:
cloudFoundry:
enabled: false
docker:
enabled: false
kubernetes:
enabled: false
filters:
filters:
- enabled: false
inclusionToggles:
incBasepod: false
incContainer: false
incNamespace: false
incProduct: false
incStage: false
matchFilter:
matchOperator: string
namespace: string
serverless:
enabled: false
CloudappWorkloaddetection 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 CloudappWorkloaddetection resource accepts the following input properties:
- Cloud
Foundry This property is required. Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- Docker
This property is required. Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- Kubernetes
This property is required. Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- Serverless
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- Cloud
Foundry This property is required. CloudappWorkloaddetection Cloud Foundry Args - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- Docker
This property is required. CloudappWorkloaddetection Docker Args - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- Kubernetes
This property is required. CloudappWorkloaddetection Kubernetes Args - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- Serverless
Cloudapp
Workloaddetection Serverless Args - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry This property is required. CloudappWorkloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
This property is required. CloudappWorkloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
This property is required. CloudappWorkloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry This property is required. CloudappWorkloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
This property is required. CloudappWorkloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
This property is required. CloudappWorkloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud_
foundry This property is required. CloudappWorkloaddetection Cloud Foundry Args - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
This property is required. CloudappWorkloaddetection Docker Args - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
This property is required. CloudappWorkloaddetection Kubernetes Args - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless Args - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry This property is required. Property Map - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
This property is required. Property Map - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
This property is required. Property Map - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless Property Map
- Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudappWorkloaddetection 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 CloudappWorkloaddetection Resource
Get an existing CloudappWorkloaddetection 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?: CloudappWorkloaddetectionState, opts?: CustomResourceOptions): CloudappWorkloaddetection
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
cloud_foundry: Optional[CloudappWorkloaddetectionCloudFoundryArgs] = None,
docker: Optional[CloudappWorkloaddetectionDockerArgs] = None,
kubernetes: Optional[CloudappWorkloaddetectionKubernetesArgs] = None,
serverless: Optional[CloudappWorkloaddetectionServerlessArgs] = None) -> CloudappWorkloaddetection
func GetCloudappWorkloaddetection(ctx *Context, name string, id IDInput, state *CloudappWorkloaddetectionState, opts ...ResourceOption) (*CloudappWorkloaddetection, error)
public static CloudappWorkloaddetection Get(string name, Input<string> id, CloudappWorkloaddetectionState? state, CustomResourceOptions? opts = null)
public static CloudappWorkloaddetection get(String name, Output<String> id, CloudappWorkloaddetectionState state, CustomResourceOptions options)
resources: _: type: dynatrace:CloudappWorkloaddetection 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.
- Cloud
Foundry Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- Docker
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- Kubernetes
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- Serverless
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- Cloud
Foundry CloudappWorkloaddetection Cloud Foundry Args - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- Docker
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- Kubernetes
Cloudapp
Workloaddetection Kubernetes Args - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- Serverless
Cloudapp
Workloaddetection Serverless Args - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry CloudappWorkloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry CloudappWorkloaddetection Cloud Foundry - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
Cloudapp
Workloaddetection Docker - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
Cloudapp
Workloaddetection Kubernetes - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud_
foundry CloudappWorkloaddetection Cloud Foundry Args - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker
Cloudapp
Workloaddetection Docker Args - Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes
Cloudapp
Workloaddetection Kubernetes Args - Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless
Cloudapp
Workloaddetection Serverless Args - Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
- cloud
Foundry Property Map - Enable this setting to get * Processes of Cloud Foundry application instances merged into process groups by Cloud Foundry application. * Container resource metrics (Container group instance entities) and related screens.
- docker Property Map
- Enable this setting for plain Docker and Podman environments to get * Container resource metrics (Container group instance entities) and related screens. * Docker support requires OneAgent 1.257+. * Podman support requires OneAgent 1.267+.
- kubernetes Property Map
- Enable this setting to get * Insights into your Kubernetes namespaces, workloads and pods (cloud application namespace, cloud application and cloud application instance and entities). * Container resource metrics (container group instance entities) and related screens. * Similar workloads merged into process groups based on defined rules (see below). * Version detection for services that run in Kubernetes workloads.
- serverless Property Map
- Enable this setting to * Detect containers based on captured cloud-vendor metadata such as e.g. AWS ECS / Fargate, Azure Container Apps, and many more. * Container resource metrics (Container group instance entities) and related screens.
Supporting Types
CloudappWorkloaddetectionCloudFoundry, CloudappWorkloaddetectionCloudFoundryArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
CloudappWorkloaddetectionDocker, CloudappWorkloaddetectionDockerArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
CloudappWorkloaddetectionKubernetes, CloudappWorkloaddetectionKubernetesArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Filters
Pulumiverse.
Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - filters
Cloudapp
Workloaddetection Kubernetes Filters Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - filters Property Map
Define rules to merge similar Kubernetes workloads into process groups.
You can use workload properties like namespace name, base pod name or container name as well as the environment variables DT_RELEASE_STAGE and DT_RELEASE_PRODUCT for grouping processes of similar workloads. The first applicable rule will be applied. If no rule matches, “Namespace name” + “Base pod name” + “Container name” is used as fallback.
CloudappWorkloaddetectionKubernetesFilters, CloudappWorkloaddetectionKubernetesFiltersArgs
- Filters
This property is required. List<Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Filter>
- Filters
This property is required. []CloudappWorkloaddetection Kubernetes Filters Filter
- filters
This property is required. List<CloudappWorkloaddetection Kubernetes Filters Filter>
- filters
This property is required. CloudappWorkloaddetection Kubernetes Filters Filter[]
- filters
This property is required. Sequence[CloudappWorkloaddetection Kubernetes Filters Filter]
- filters
This property is required. List<Property Map>
CloudappWorkloaddetectionKubernetesFiltersFilter, CloudappWorkloaddetectionKubernetesFiltersFilterArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Inclusion
Toggles This property is required. Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- Match
Filter This property is required. Pulumiverse.Dynatrace. Inputs. Cloudapp Workloaddetection Kubernetes Filters Filter Match Filter - When namespace
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - Inclusion
Toggles This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- Match
Filter This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match
Filter This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match
Filter This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
) - inclusion_
toggles This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Inclusion Toggles - ID calculation based on
- match_
filter This property is required. CloudappWorkloaddetection Kubernetes Filters Filter Match Filter - When namespace
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
) - inclusion
Toggles This property is required. Property Map - ID calculation based on
- match
Filter This property is required. Property Map - When namespace
CloudappWorkloaddetectionKubernetesFiltersFilterInclusionToggles, CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs
- Inc
Basepod This property is required. bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- Inc
Container This property is required. bool - Container name
- Inc
Namespace This property is required. bool - Namespace name
- Inc
Product This property is required. bool - If Product is enabled and has no value, it defaults to Base pod name
- Inc
Stage This property is required. bool - Stage
- Inc
Basepod This property is required. bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- Inc
Container This property is required. bool - Container name
- Inc
Namespace This property is required. bool - Namespace name
- Inc
Product This property is required. bool - If Product is enabled and has no value, it defaults to Base pod name
- Inc
Stage This property is required. bool - Stage
- inc
Basepod This property is required. Boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container This property is required. Boolean - Container name
- inc
Namespace This property is required. Boolean - Namespace name
- inc
Product This property is required. Boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage This property is required. Boolean - Stage
- inc
Basepod This property is required. boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container This property is required. boolean - Container name
- inc
Namespace This property is required. boolean - Namespace name
- inc
Product This property is required. boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage This property is required. boolean - Stage
- inc_
basepod This property is required. bool - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc_
container This property is required. bool - Container name
- inc_
namespace This property is required. bool - Namespace name
- inc_
product This property is required. bool - If Product is enabled and has no value, it defaults to Base pod name
- inc_
stage This property is required. bool - Stage
- inc
Basepod This property is required. Boolean - E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
- inc
Container This property is required. Boolean - Container name
- inc
Namespace This property is required. Boolean - Namespace name
- inc
Product This property is required. Boolean - If Product is enabled and has no value, it defaults to Base pod name
- inc
Stage This property is required. Boolean - Stage
CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilter, CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs
- Match
Operator This property is required. string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- Namespace string
- Namespace name
- Match
Operator This property is required. string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- Namespace string
- Namespace name
- match
Operator This property is required. String - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace String
- Namespace name
- match
Operator This property is required. string - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace string
- Namespace name
- match_
operator This property is required. str - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace str
- Namespace name
- match
Operator This property is required. String - Possible Values:
CONTAINS
,ENDS
,EQUALS
,EXISTS
,NOT_CONTAINS
,NOT_ENDS
,NOT_EQUALS
,NOT_STARTS
,STARTS
- namespace String
- Namespace name
CloudappWorkloaddetectionServerless, CloudappWorkloaddetectionServerlessArgs
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- Enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. boolean - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. bool - This setting is enabled (
true
) or disabled (false
)
- enabled
This property is required. Boolean - This setting is enabled (
true
) or disabled (false
)
Package Details
- Repository
- dynatrace pulumiverse/pulumi-dynatrace
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
dynatrace
Terraform Provider.