1. Packages
  2. Dynatrace
  3. API Docs
  4. CloudappWorkloaddetection
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

dynatrace.CloudappWorkloaddetection

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse

    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)
    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 string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    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 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 string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudappWorkloaddetectionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args 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",
                        },
                    },
                },
            },
        },
    });
    
    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"),
    					},
    				},
    			},
    		},
    	},
    })
    
    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())
        .build());
    
    cloudapp_workloaddetection_resource = dynatrace.CloudappWorkloaddetection("cloudappWorkloaddetectionResource",
        cloud_foundry=dynatrace.CloudappWorkloaddetectionCloudFoundryArgs(
            enabled=False,
        ),
        docker=dynatrace.CloudappWorkloaddetectionDockerArgs(
            enabled=False,
        ),
        kubernetes=dynatrace.CloudappWorkloaddetectionKubernetesArgs(
            enabled=False,
            filters=dynatrace.CloudappWorkloaddetectionKubernetesFiltersArgs(
                filters=[dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterArgs(
                    enabled=False,
                    inclusion_toggles=dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs(
                        inc_basepod=False,
                        inc_container=False,
                        inc_namespace=False,
                        inc_product=False,
                        inc_stage=False,
                    ),
                    match_filter=dynatrace.CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs(
                        match_operator="string",
                        namespace="string",
                    ),
                )],
            ),
        ))
    
    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",
                    },
                }],
            },
        },
    });
    
    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
    

    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

    The CloudappWorkloaddetection resource accepts the following input properties:

    CloudFoundry Pulumiverse.Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundry
    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.CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes Pulumiverse.Dynatrace.Inputs.CloudappWorkloaddetectionKubernetes
    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.
    CloudFoundry CloudappWorkloaddetectionCloudFoundryArgs
    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 CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes CloudappWorkloaddetectionKubernetesArgs
    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.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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 CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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 CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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.
    cloud_foundry CloudappWorkloaddetectionCloudFoundryArgs
    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 CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetesArgs
    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.
    cloudFoundry 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 environments to get * Container resource metrics (Container group instance entities) and related screens.
    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.

    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) -> 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)
    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.
    The following state arguments are supported:
    CloudFoundry Pulumiverse.Dynatrace.Inputs.CloudappWorkloaddetectionCloudFoundry
    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.CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes Pulumiverse.Dynatrace.Inputs.CloudappWorkloaddetectionKubernetes
    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.
    CloudFoundry CloudappWorkloaddetectionCloudFoundryArgs
    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 CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    Kubernetes CloudappWorkloaddetectionKubernetesArgs
    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.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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 CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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.
    cloudFoundry CloudappWorkloaddetectionCloudFoundry
    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 CloudappWorkloaddetectionDocker
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetes
    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.
    cloud_foundry CloudappWorkloaddetectionCloudFoundryArgs
    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 CloudappWorkloaddetectionDockerArgs
    Enable this setting for plain Docker environments to get * Container resource metrics (Container group instance entities) and related screens.
    kubernetes CloudappWorkloaddetectionKubernetesArgs
    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.
    cloudFoundry 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 environments to get * Container resource metrics (Container group instance entities) and related screens.
    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.

    Supporting Types

    CloudappWorkloaddetectionCloudFoundry, CloudappWorkloaddetectionCloudFoundryArgs

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Enabled bool
    This setting is enabled (true) or disabled (false)
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    enabled boolean
    This setting is enabled (true) or disabled (false)
    enabled bool
    This setting is enabled (true) or disabled (false)
    enabled Boolean
    This setting is enabled (true) or disabled (false)

    CloudappWorkloaddetectionDocker, CloudappWorkloaddetectionDockerArgs

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Enabled bool
    This setting is enabled (true) or disabled (false)
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    enabled boolean
    This setting is enabled (true) or disabled (false)
    enabled bool
    This setting is enabled (true) or disabled (false)
    enabled Boolean
    This setting is enabled (true) or disabled (false)

    CloudappWorkloaddetectionKubernetes, CloudappWorkloaddetectionKubernetesArgs

    Enabled bool
    This setting is enabled (true) or disabled (false)
    Filters Pulumiverse.Dynatrace.Inputs.CloudappWorkloaddetectionKubernetesFilters

    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 bool
    This setting is enabled (true) or disabled (false)
    Filters CloudappWorkloaddetectionKubernetesFilters

    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 Boolean
    This setting is enabled (true) or disabled (false)
    filters CloudappWorkloaddetectionKubernetesFilters

    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 boolean
    This setting is enabled (true) or disabled (false)
    filters CloudappWorkloaddetectionKubernetesFilters

    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 bool
    This setting is enabled (true) or disabled (false)
    filters CloudappWorkloaddetectionKubernetesFilters

    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 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

    CloudappWorkloaddetectionKubernetesFiltersFilter, CloudappWorkloaddetectionKubernetesFiltersFilterArgs

    enabled Boolean
    This setting is enabled (true) or disabled (false)
    inclusionToggles Property Map
    ID calculation based on
    matchFilter Property Map
    When namespace

    CloudappWorkloaddetectionKubernetesFiltersFilterInclusionToggles, CloudappWorkloaddetectionKubernetesFiltersFilterInclusionTogglesArgs

    IncBasepod bool
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    IncContainer bool
    Container name
    IncNamespace bool
    Namespace name
    IncProduct bool
    If Product is enabled and has no value, it defaults to Base pod name
    IncStage bool
    Stage
    IncBasepod bool
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    IncContainer bool
    Container name
    IncNamespace bool
    Namespace name
    IncProduct bool
    If Product is enabled and has no value, it defaults to Base pod name
    IncStage bool
    Stage
    incBasepod Boolean
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    incContainer Boolean
    Container name
    incNamespace Boolean
    Namespace name
    incProduct Boolean
    If Product is enabled and has no value, it defaults to Base pod name
    incStage Boolean
    Stage
    incBasepod boolean
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    incContainer boolean
    Container name
    incNamespace boolean
    Namespace name
    incProduct boolean
    If Product is enabled and has no value, it defaults to Base pod name
    incStage boolean
    Stage
    inc_basepod bool
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    inc_container bool
    Container name
    inc_namespace bool
    Namespace name
    inc_product bool
    If Product is enabled and has no value, it defaults to Base pod name
    inc_stage bool
    Stage
    incBasepod Boolean
    E.g. "cloud-credential-operator-" for "cloud-credential-operator-5ff6dbff57-gszgq"
    incContainer Boolean
    Container name
    incNamespace Boolean
    Namespace name
    incProduct Boolean
    If Product is enabled and has no value, it defaults to Base pod name
    incStage Boolean
    Stage

    CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilter, CloudappWorkloaddetectionKubernetesFiltersFilterMatchFilterArgs

    MatchOperator string
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    Namespace string
    Namespace name
    MatchOperator string
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    Namespace string
    Namespace name
    matchOperator String
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    namespace String
    Namespace name
    matchOperator string
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    namespace string
    Namespace name
    match_operator str
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    namespace str
    Namespace name
    matchOperator String
    Possible Values: CONTAINS, ENDS, EQUALS, EXISTS, NOT_CONTAINS, NOT_ENDS, NOT_EQUALS, NOT_STARTS, STARTS
    namespace String
    Namespace name

    Package Details

    Repository
    dynatrace pulumiverse/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.12.0 published on Tuesday, Jul 16, 2024 by Pulumiverse