@mihaly-farkas/cdk8s-dynatrace-monitoring - v0.1.0-alpha.19
    Preparing search index...

    Interface DynatraceMonitoringProps

    Configuration options for setting up Dynatrace monitoring on Kubernetes.

    interface DynatraceMonitoringProps {
        activeGate?: ActiveGateProps;
        apiUrl: string;
        deploymentOption: DeploymentOption;
        hostGroup?: string;
        name?: string;
        namespace?: NamespaceProps;
        oneAgent?: OneAgentProps;
        skipCertCheck?: boolean;
        tokens: Tokens;
    }
    Index

    Properties

    activeGate?: ActiveGateProps

    Optional ActiveGate configuration.

    apiUrl: string

    Dynatrace API endpoint URL.

    deploymentOption: DeploymentOption

    Deployment mode for Dynatrace monitoring.

    hostGroup?: string

    Optional host group name to assign to monitored hosts.

    Host groups are used in Dynatrace to logically group and manage hosts for easier configuration and monitoring. This is especially useful for applying targeted settings, such as naming rules, management zones, etc.

    If specified, the value will be passed to the Dynatrace operator to tag the hosts accordingly.

    For more details, refer to the Dynatrace documentation: Organize your environment using host groups

    undefined
    
    name?: string

    The name of the Kubernetes cluster in Dynatrace.

    This is used to identify the cluster in the Dynatrace UI. It means also that the DynaKube and Secret resources will be created with this name.

    'kubernetes-cluster'
    
    namespace?: NamespaceProps

    Optional namespace properties.

    oneAgent?: OneAgentProps

    Optional resource settings for OneAgent in full-stack mode.

    skipCertCheck?: boolean

    Whether to skip SSL certificate validation for the Dynatrace API endpoint.

    This can be useful for testing or when using self-signed certificates, but is not recommended in production environments due to security concerns.

    false
    
    tokens: Tokens

    Dynatrace access tokens for authentication.