@aws-quickstart/eks-blueprints
    Preparing search index...

    Interface CloudWatchAdotAddOnProps

    Configuration options for CloudWatch Adot add-on.

    interface CloudWatchAdotAddOnProps {
        deploymentMode?: cloudWatchDeploymentMode;
        metricsNameSelectors?: string[];
        name?: string;
        namespace?: string;
        podLabelRegex?: string;
    }
    Index

    Properties

    deploymentMode?: cloudWatchDeploymentMode

    Modes supported : deployment, daemonset, statefulSet, and sidecar

    deployment
    
    metricsNameSelectors?: string[]

    Metrics name selectors to write to CloudWatch.

    "['apiserver_request_.*', 'container_memory_.*', 'container_threads', 'otelcol_process_.*']"
    
    name?: string

    Name to deploy the ADOT Collector for CloudWatch.

    'adot-collector-cloudwatch'
    
    namespace?: string

    Namespace to deploy the ADOT Collector for CloudWatch.

    default
    
    podLabelRegex?: string

    Labels of Pods to select your application pods emitting custom metrics. Example 'frontend|downstream(.*)'

    '.*'