1. Packages
  2. Dynatrace
  3. API Docs
  4. Kubernetes
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

dynatrace.Kubernetes

Explore with Pulumi AI

dynatrace logo
Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs

    Create Kubernetes Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Kubernetes(name: string, args: KubernetesArgs, opts?: CustomResourceOptions);
    @overload
    def Kubernetes(resource_name: str,
                   args: KubernetesArgs,
                   opts: Optional[ResourceOptions] = None)
    
    @overload
    def Kubernetes(resource_name: str,
                   opts: Optional[ResourceOptions] = None,
                   event_processing_active: Optional[bool] = None,
                   scope: Optional[str] = None,
                   pvc_monitoring_enabled: Optional[bool] = None,
                   cloud_application_pipeline_enabled: Optional[bool] = None,
                   open_metrics_pipeline_enabled: Optional[bool] = None,
                   cluster_id_enabled: Optional[bool] = None,
                   enabled: Optional[bool] = None,
                   open_metrics_builtin_enabled: Optional[bool] = None,
                   label: Optional[str] = None,
                   event_patterns: Optional[KubernetesEventPatternsArgs] = None,
                   filter_events: Optional[bool] = None,
                   hostname_verification_enabled: Optional[bool] = None,
                   include_all_fdi_events: Optional[bool] = None,
                   active_gate_group: Optional[str] = None,
                   endpoint_url: Optional[str] = None,
                   cluster_id: Optional[str] = None,
                   certificate_check_enabled: Optional[bool] = None,
                   auth_token: Optional[str] = None)
    func NewKubernetes(ctx *Context, name string, args KubernetesArgs, opts ...ResourceOption) (*Kubernetes, error)
    public Kubernetes(string name, KubernetesArgs args, CustomResourceOptions? opts = null)
    public Kubernetes(String name, KubernetesArgs args)
    public Kubernetes(String name, KubernetesArgs args, CustomResourceOptions options)
    
    type: dynatrace:Kubernetes
    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 KubernetesArgs
    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 KubernetesArgs
    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 KubernetesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args KubernetesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args KubernetesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var kubernetesResource = new Dynatrace.Kubernetes("kubernetesResource", new()
    {
        EventProcessingActive = false,
        Scope = "string",
        PvcMonitoringEnabled = false,
        CloudApplicationPipelineEnabled = false,
        OpenMetricsPipelineEnabled = false,
        ClusterIdEnabled = false,
        Enabled = false,
        OpenMetricsBuiltinEnabled = false,
        Label = "string",
        EventPatterns = new Dynatrace.Inputs.KubernetesEventPatternsArgs
        {
            EventPatterns = new[]
            {
                new Dynatrace.Inputs.KubernetesEventPatternsEventPatternArgs
                {
                    Active = false,
                    Label = "string",
                    Pattern = "string",
                },
            },
        },
        FilterEvents = false,
        HostnameVerificationEnabled = false,
        IncludeAllFdiEvents = false,
        ActiveGateGroup = "string",
        EndpointUrl = "string",
        ClusterId = "string",
        CertificateCheckEnabled = false,
        AuthToken = "string",
    });
    
    example, err := dynatrace.NewKubernetes(ctx, "kubernetesResource", &dynatrace.KubernetesArgs{
    	EventProcessingActive:           pulumi.Bool(false),
    	Scope:                           pulumi.String("string"),
    	PvcMonitoringEnabled:            pulumi.Bool(false),
    	CloudApplicationPipelineEnabled: pulumi.Bool(false),
    	OpenMetricsPipelineEnabled:      pulumi.Bool(false),
    	ClusterIdEnabled:                pulumi.Bool(false),
    	Enabled:                         pulumi.Bool(false),
    	OpenMetricsBuiltinEnabled:       pulumi.Bool(false),
    	Label:                           pulumi.String("string"),
    	EventPatterns: &dynatrace.KubernetesEventPatternsArgs{
    		EventPatterns: dynatrace.KubernetesEventPatternsEventPatternArray{
    			&dynatrace.KubernetesEventPatternsEventPatternArgs{
    				Active:  pulumi.Bool(false),
    				Label:   pulumi.String("string"),
    				Pattern: pulumi.String("string"),
    			},
    		},
    	},
    	FilterEvents:                pulumi.Bool(false),
    	HostnameVerificationEnabled: pulumi.Bool(false),
    	IncludeAllFdiEvents:         pulumi.Bool(false),
    	ActiveGateGroup:             pulumi.String("string"),
    	EndpointUrl:                 pulumi.String("string"),
    	ClusterId:                   pulumi.String("string"),
    	CertificateCheckEnabled:     pulumi.Bool(false),
    	AuthToken:                   pulumi.String("string"),
    })
    
    var kubernetesResource = new Kubernetes("kubernetesResource", KubernetesArgs.builder()        
        .eventProcessingActive(false)
        .scope("string")
        .pvcMonitoringEnabled(false)
        .cloudApplicationPipelineEnabled(false)
        .openMetricsPipelineEnabled(false)
        .clusterIdEnabled(false)
        .enabled(false)
        .openMetricsBuiltinEnabled(false)
        .label("string")
        .eventPatterns(KubernetesEventPatternsArgs.builder()
            .eventPatterns(KubernetesEventPatternsEventPatternArgs.builder()
                .active(false)
                .label("string")
                .pattern("string")
                .build())
            .build())
        .filterEvents(false)
        .hostnameVerificationEnabled(false)
        .includeAllFdiEvents(false)
        .activeGateGroup("string")
        .endpointUrl("string")
        .clusterId("string")
        .certificateCheckEnabled(false)
        .authToken("string")
        .build());
    
    kubernetes_resource = dynatrace.Kubernetes("kubernetesResource",
        event_processing_active=False,
        scope="string",
        pvc_monitoring_enabled=False,
        cloud_application_pipeline_enabled=False,
        open_metrics_pipeline_enabled=False,
        cluster_id_enabled=False,
        enabled=False,
        open_metrics_builtin_enabled=False,
        label="string",
        event_patterns=dynatrace.KubernetesEventPatternsArgs(
            event_patterns=[dynatrace.KubernetesEventPatternsEventPatternArgs(
                active=False,
                label="string",
                pattern="string",
            )],
        ),
        filter_events=False,
        hostname_verification_enabled=False,
        include_all_fdi_events=False,
        active_gate_group="string",
        endpoint_url="string",
        cluster_id="string",
        certificate_check_enabled=False,
        auth_token="string")
    
    const kubernetesResource = new dynatrace.Kubernetes("kubernetesResource", {
        eventProcessingActive: false,
        scope: "string",
        pvcMonitoringEnabled: false,
        cloudApplicationPipelineEnabled: false,
        openMetricsPipelineEnabled: false,
        clusterIdEnabled: false,
        enabled: false,
        openMetricsBuiltinEnabled: false,
        label: "string",
        eventPatterns: {
            eventPatterns: [{
                active: false,
                label: "string",
                pattern: "string",
            }],
        },
        filterEvents: false,
        hostnameVerificationEnabled: false,
        includeAllFdiEvents: false,
        activeGateGroup: "string",
        endpointUrl: "string",
        clusterId: "string",
        certificateCheckEnabled: false,
        authToken: "string",
    });
    
    type: dynatrace:Kubernetes
    properties:
        activeGateGroup: string
        authToken: string
        certificateCheckEnabled: false
        cloudApplicationPipelineEnabled: false
        clusterId: string
        clusterIdEnabled: false
        enabled: false
        endpointUrl: string
        eventPatterns:
            eventPatterns:
                - active: false
                  label: string
                  pattern: string
        eventProcessingActive: false
        filterEvents: false
        hostnameVerificationEnabled: false
        includeAllFdiEvents: false
        label: string
        openMetricsBuiltinEnabled: false
        openMetricsPipelineEnabled: false
        pvcMonitoringEnabled: false
        scope: string
    

    Kubernetes 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 Kubernetes resource accepts the following input properties:

    CloudApplicationPipelineEnabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    ClusterIdEnabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EventProcessingActive bool
    All events are monitored by default unless event filters are specified.
    Label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    OpenMetricsBuiltinEnabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    OpenMetricsPipelineEnabled bool
    For annotation guidance, see the documentation.
    PvcMonitoringEnabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    Scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    ActiveGateGroup string
    ActiveGate Group
    AuthToken string
    Create a bearer token for Kubernetes or OpenShift.
    CertificateCheckEnabled bool
    Require valid certificates for communication with API server (recommended)
    ClusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    EndpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    EventPatterns Lbrlabs.PulumiPackage.Dynatrace.Inputs.KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    FilterEvents bool
    Include only events specified by Events Field Selectors
    HostnameVerificationEnabled bool
    Verify hostname in certificate against Kubernetes API URL
    IncludeAllFdiEvents bool
    For a list of included events, see the documentation.
    CloudApplicationPipelineEnabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    ClusterIdEnabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EventProcessingActive bool
    All events are monitored by default unless event filters are specified.
    Label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    OpenMetricsBuiltinEnabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    OpenMetricsPipelineEnabled bool
    For annotation guidance, see the documentation.
    PvcMonitoringEnabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    Scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    ActiveGateGroup string
    ActiveGate Group
    AuthToken string
    Create a bearer token for Kubernetes or OpenShift.
    CertificateCheckEnabled bool
    Require valid certificates for communication with API server (recommended)
    ClusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    EndpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    EventPatterns KubernetesEventPatternsArgs
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    FilterEvents bool
    Include only events specified by Events Field Selectors
    HostnameVerificationEnabled bool
    Verify hostname in certificate against Kubernetes API URL
    IncludeAllFdiEvents bool
    For a list of included events, see the documentation.
    cloudApplicationPipelineEnabled Boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterIdEnabled Boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    eventProcessingActive Boolean
    All events are monitored by default unless event filters are specified.
    label String
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled Boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled Boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled Boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope String
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup String
    ActiveGate Group
    authToken String
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled Boolean
    Require valid certificates for communication with API server (recommended)
    clusterId String
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    endpointUrl String
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    filterEvents Boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled Boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents Boolean
    For a list of included events, see the documentation.
    cloudApplicationPipelineEnabled boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterIdEnabled boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled boolean
    This setting is enabled (true) or disabled (false)
    eventProcessingActive boolean
    All events are monitored by default unless event filters are specified.
    label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup string
    ActiveGate Group
    authToken string
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled boolean
    Require valid certificates for communication with API server (recommended)
    clusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    endpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    filterEvents boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents boolean
    For a list of included events, see the documentation.
    cloud_application_pipeline_enabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    cluster_id_enabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled bool
    This setting is enabled (true) or disabled (false)
    event_processing_active bool
    All events are monitored by default unless event filters are specified.
    label str
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    open_metrics_builtin_enabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    open_metrics_pipeline_enabled bool
    For annotation guidance, see the documentation.
    pvc_monitoring_enabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope str
    The scope of this setting (KUBERNETES_CLUSTER)
    active_gate_group str
    ActiveGate Group
    auth_token str
    Create a bearer token for Kubernetes or OpenShift.
    certificate_check_enabled bool
    Require valid certificates for communication with API server (recommended)
    cluster_id str
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    endpoint_url str
    Get the API URL for Kubernetes or OpenShift.
    event_patterns KubernetesEventPatternsArgs
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    filter_events bool
    Include only events specified by Events Field Selectors
    hostname_verification_enabled bool
    Verify hostname in certificate against Kubernetes API URL
    include_all_fdi_events bool
    For a list of included events, see the documentation.
    cloudApplicationPipelineEnabled Boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterIdEnabled Boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    eventProcessingActive Boolean
    All events are monitored by default unless event filters are specified.
    label String
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled Boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled Boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled Boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope String
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup String
    ActiveGate Group
    authToken String
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled Boolean
    Require valid certificates for communication with API server (recommended)
    clusterId String
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    endpointUrl String
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns Property Map
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    filterEvents Boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled Boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents Boolean
    For a list of included events, see the documentation.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Kubernetes 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 Kubernetes Resource

    Get an existing Kubernetes 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?: KubernetesState, opts?: CustomResourceOptions): Kubernetes
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            active_gate_group: Optional[str] = None,
            auth_token: Optional[str] = None,
            certificate_check_enabled: Optional[bool] = None,
            cloud_application_pipeline_enabled: Optional[bool] = None,
            cluster_id: Optional[str] = None,
            cluster_id_enabled: Optional[bool] = None,
            enabled: Optional[bool] = None,
            endpoint_url: Optional[str] = None,
            event_patterns: Optional[KubernetesEventPatternsArgs] = None,
            event_processing_active: Optional[bool] = None,
            filter_events: Optional[bool] = None,
            hostname_verification_enabled: Optional[bool] = None,
            include_all_fdi_events: Optional[bool] = None,
            label: Optional[str] = None,
            open_metrics_builtin_enabled: Optional[bool] = None,
            open_metrics_pipeline_enabled: Optional[bool] = None,
            pvc_monitoring_enabled: Optional[bool] = None,
            scope: Optional[str] = None) -> Kubernetes
    func GetKubernetes(ctx *Context, name string, id IDInput, state *KubernetesState, opts ...ResourceOption) (*Kubernetes, error)
    public static Kubernetes Get(string name, Input<string> id, KubernetesState? state, CustomResourceOptions? opts = null)
    public static Kubernetes get(String name, Output<String> id, KubernetesState 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:
    ActiveGateGroup string
    ActiveGate Group
    AuthToken string
    Create a bearer token for Kubernetes or OpenShift.
    CertificateCheckEnabled bool
    Require valid certificates for communication with API server (recommended)
    CloudApplicationPipelineEnabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    ClusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    ClusterIdEnabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    EventPatterns Lbrlabs.PulumiPackage.Dynatrace.Inputs.KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    EventProcessingActive bool
    All events are monitored by default unless event filters are specified.
    FilterEvents bool
    Include only events specified by Events Field Selectors
    HostnameVerificationEnabled bool
    Verify hostname in certificate against Kubernetes API URL
    IncludeAllFdiEvents bool
    For a list of included events, see the documentation.
    Label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    OpenMetricsBuiltinEnabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    OpenMetricsPipelineEnabled bool
    For annotation guidance, see the documentation.
    PvcMonitoringEnabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    Scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    ActiveGateGroup string
    ActiveGate Group
    AuthToken string
    Create a bearer token for Kubernetes or OpenShift.
    CertificateCheckEnabled bool
    Require valid certificates for communication with API server (recommended)
    CloudApplicationPipelineEnabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    ClusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    ClusterIdEnabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    Enabled bool
    This setting is enabled (true) or disabled (false)
    EndpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    EventPatterns KubernetesEventPatternsArgs
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    EventProcessingActive bool
    All events are monitored by default unless event filters are specified.
    FilterEvents bool
    Include only events specified by Events Field Selectors
    HostnameVerificationEnabled bool
    Verify hostname in certificate against Kubernetes API URL
    IncludeAllFdiEvents bool
    For a list of included events, see the documentation.
    Label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    OpenMetricsBuiltinEnabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    OpenMetricsPipelineEnabled bool
    For annotation guidance, see the documentation.
    PvcMonitoringEnabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    Scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup String
    ActiveGate Group
    authToken String
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled Boolean
    Require valid certificates for communication with API server (recommended)
    cloudApplicationPipelineEnabled Boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterId String
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    clusterIdEnabled Boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointUrl String
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    eventProcessingActive Boolean
    All events are monitored by default unless event filters are specified.
    filterEvents Boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled Boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents Boolean
    For a list of included events, see the documentation.
    label String
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled Boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled Boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled Boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope String
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup string
    ActiveGate Group
    authToken string
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled boolean
    Require valid certificates for communication with API server (recommended)
    cloudApplicationPipelineEnabled boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterId string
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    clusterIdEnabled boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled boolean
    This setting is enabled (true) or disabled (false)
    endpointUrl string
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns KubernetesEventPatterns
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    eventProcessingActive boolean
    All events are monitored by default unless event filters are specified.
    filterEvents boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents boolean
    For a list of included events, see the documentation.
    label string
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope string
    The scope of this setting (KUBERNETES_CLUSTER)
    active_gate_group str
    ActiveGate Group
    auth_token str
    Create a bearer token for Kubernetes or OpenShift.
    certificate_check_enabled bool
    Require valid certificates for communication with API server (recommended)
    cloud_application_pipeline_enabled bool
    Monitor Kubernetes namespaces, services, workloads, and pods
    cluster_id str
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    cluster_id_enabled bool
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled bool
    This setting is enabled (true) or disabled (false)
    endpoint_url str
    Get the API URL for Kubernetes or OpenShift.
    event_patterns KubernetesEventPatternsArgs
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    event_processing_active bool
    All events are monitored by default unless event filters are specified.
    filter_events bool
    Include only events specified by Events Field Selectors
    hostname_verification_enabled bool
    Verify hostname in certificate against Kubernetes API URL
    include_all_fdi_events bool
    For a list of included events, see the documentation.
    label str
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    open_metrics_builtin_enabled bool
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    open_metrics_pipeline_enabled bool
    For annotation guidance, see the documentation.
    pvc_monitoring_enabled bool
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope str
    The scope of this setting (KUBERNETES_CLUSTER)
    activeGateGroup String
    ActiveGate Group
    authToken String
    Create a bearer token for Kubernetes or OpenShift.
    certificateCheckEnabled Boolean
    Require valid certificates for communication with API server (recommended)
    cloudApplicationPipelineEnabled Boolean
    Monitor Kubernetes namespaces, services, workloads, and pods
    clusterId String
    Unique ID of the cluster, the containerized ActiveGate is deployed to. Defaults to the UUID of the kube-system namespace. The cluster ID of containerized ActiveGates is shown on the Deployment status screen.
    clusterIdEnabled Boolean
    For more information on local Kubernetes API monitoring, see the documentation.
    enabled Boolean
    This setting is enabled (true) or disabled (false)
    endpointUrl String
    Get the API URL for Kubernetes or OpenShift.
    eventPatterns Property Map
    Define Kubernetes event filters to ingest events into your environment. For more details, see the documentation.
    eventProcessingActive Boolean
    All events are monitored by default unless event filters are specified.
    filterEvents Boolean
    Include only events specified by Events Field Selectors
    hostnameVerificationEnabled Boolean
    Verify hostname in certificate against Kubernetes API URL
    includeAllFdiEvents Boolean
    For a list of included events, see the documentation.
    label String
    Renaming the cluster breaks configurations that are based on its name (e.g., management zones, and alerting).
    openMetricsBuiltinEnabled Boolean
    The workload resource metrics are based on a subset of cAdvisor metrics. Depending on your Kubernetes cluster size, this may increase the CPU/memory resource consumption of your ActiveGate.
    openMetricsPipelineEnabled Boolean
    For annotation guidance, see the documentation.
    pvcMonitoringEnabled Boolean
    To enable dashboards and alerts, add the Kubernetes persistent volume claims extension to your environment.
    scope String
    The scope of this setting (KUBERNETES_CLUSTER)

    Supporting Types

    KubernetesEventPatterns, KubernetesEventPatternsArgs

    KubernetesEventPatternsEventPattern, KubernetesEventPatternsEventPatternArgs

    Active bool
    Label string
    Pattern string
    Active bool
    Label string
    Pattern string
    active Boolean
    label String
    pattern String
    active boolean
    label string
    pattern string
    active bool
    label str
    pattern str
    active Boolean
    label String
    pattern String

    Package Details

    Repository
    dynatrace lbrlabs/pulumi-dynatrace
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the dynatrace Terraform Provider.
    dynatrace logo
    Dynatrace v0.1.0 published on Wednesday, May 24, 2023 by Lbrlabs