├── .github └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cloudwatch-agent-dockerfile └── Dockerfile ├── container-insights-manifest-update.sh ├── ecs-task-definition-templates └── deployment-mode │ ├── README.md │ ├── daemon-service │ ├── README.md │ └── cwagent-ecs-instance-metric │ │ ├── README.md │ │ ├── cloudformation-quickstart │ │ ├── README.md │ │ └── cwagent-ecs-instance-metric-cfn.json │ │ └── cwagent-ecs-instance-metric.json │ ├── replica-service │ └── cwagent-prometheus │ │ ├── README.md │ │ ├── cloudformation-quickstart │ │ ├── README.md │ │ ├── cwagent-ecs-prometheus-metric-for-awsvpc.yaml │ │ └── cwagent-ecs-prometheus-metric-for-bridge-host.yaml │ │ ├── cwagent-prometheus-task-definition.json │ │ ├── sample_cloudwatch_dashboards │ │ ├── README.md │ │ ├── appmesh │ │ │ ├── README.md │ │ │ └── cw_dashboard_awsappmesh.json │ │ ├── javajmx │ │ │ ├── README.md │ │ │ └── cw_dashboard_javajmx.json │ │ ├── memcached │ │ │ ├── README.md │ │ │ └── cw_dashboard_memcached.json │ │ └── redis │ │ │ ├── README.md │ │ │ └── cw_dashboard_redis.json │ │ └── sample_traffic │ │ ├── memcached │ │ ├── README.md │ │ └── memcached-traffic-sample.yaml │ │ └── redis │ │ ├── README.md │ │ └── redis-traffic-sample.yaml │ └── sidecar │ ├── README.md │ ├── combination │ ├── README.md │ ├── combination-ec2.json │ └── combination-fargate.json │ ├── cwagent-emf │ ├── README.md │ ├── cwagent-emf-ec2.json │ └── cwagent-emf-fargate.json │ ├── cwagent-sdkmetrics │ ├── README.md │ ├── cwagent-sdkmetrics-ec2.json │ └── cwagent-sdkmetrics-fargate.json │ └── cwagent-statsd │ ├── README.md │ ├── cwagent-statsd-ec2.json │ └── cwagent-statsd-fargate.json ├── k8s-deployment-manifest-templates └── deployment-mode │ ├── README.md │ ├── daemonset │ ├── README.md │ ├── combination │ │ ├── README.md │ │ └── combination.yaml │ ├── container-insights-monitoring │ │ ├── README.md │ │ ├── cloudwatch-namespace.yaml │ │ ├── cwagent │ │ │ ├── cwagent-configmap-enhanced.yaml │ │ │ ├── cwagent-configmap.yaml │ │ │ ├── cwagent-daemonset-windows.yaml │ │ │ ├── cwagent-daemonset.yaml │ │ │ └── cwagent-serviceaccount.yaml │ │ ├── fluent-bit │ │ │ ├── fluent-bit-compatible.yaml │ │ │ ├── fluent-bit-configmap.yaml │ │ │ ├── fluent-bit-windows.yaml │ │ │ └── fluent-bit.yaml │ │ ├── fluentd │ │ │ ├── fluentd-configmap.yaml │ │ │ └── fluentd.yaml │ │ └── quickstart │ │ │ ├── cwagent-fluent-bit-quickstart-enhanced.yaml │ │ │ ├── cwagent-fluent-bit-quickstart-windows.yaml │ │ │ ├── cwagent-fluent-bit-quickstart.yaml │ │ │ ├── cwagent-fluentd-quickstart-enhanced.yaml │ │ │ └── cwagent-fluentd-quickstart.yaml │ ├── cwagent-fluentd-xray │ │ ├── README.md │ │ └── cwagent-fluentd-xray-quickstart.yaml │ ├── cwagent-sdkmetrics │ │ ├── README.md │ │ └── cwagent-sdkmetrics.yaml │ └── cwagent-statsd │ │ ├── README.md │ │ └── cwagent-statsd.yaml │ ├── service │ ├── README.md │ ├── combination │ │ ├── README.md │ │ └── combination.yaml │ ├── cwagent-prometheus │ │ ├── README.md │ │ ├── prometheus-eks-fargate.yaml │ │ ├── prometheus-eks-windows-exporter.yaml │ │ ├── prometheus-eks.yaml │ │ ├── prometheus-k8s.yaml │ │ ├── sample_cloudwatch_dashboards │ │ │ ├── README.md │ │ │ ├── appmesh │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_awsappmesh.json │ │ │ ├── fluent-bit │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_fluent_bit.json │ │ │ ├── haproxy-ingress │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_haproxy_ingress.json │ │ │ ├── javajmx │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_javajmx.json │ │ │ ├── kubernetes_api_server │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_kubernetes_api_server.json │ │ │ ├── memcached │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_memcached.json │ │ │ ├── nginx-ingress │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_nginx_ingress_controller.json │ │ │ └── redis │ │ │ │ ├── README.md │ │ │ │ └── cw_dashboard_redis.json │ │ ├── sample_traffic │ │ │ ├── README.md │ │ │ ├── nginx-traffic │ │ │ │ ├── README.md │ │ │ │ └── nginx-traffic-sample.yaml │ │ │ └── redis │ │ │ │ ├── README.md │ │ │ │ └── redis-traffic-sample.yaml │ │ └── sample_windows_exporter │ │ │ ├── sample-net-app.yaml │ │ │ └── windows-exporter.yaml │ ├── cwagent-sdkmetrics │ │ ├── README.md │ │ └── cwagent-sdkmetrics.yaml │ └── cwagent-statsd │ │ ├── README.md │ │ └── cwagent-statsd.yaml │ └── sidecar │ ├── README.md │ ├── combination │ ├── README.md │ └── combination.yaml │ ├── cwagent-emf │ ├── README.md │ └── cwagent-emf.yaml │ ├── cwagent-sdkmetrics │ ├── README.md │ └── cwagent-sdkmetrics.yaml │ └── cwagent-statsd │ ├── README.md │ └── cwagent-statsd.yaml ├── k8s-quickstart ├── README.md ├── cwagent-custom-resource-definitions.yaml ├── cwagent-operator-rendered.yaml └── cwagent-version.yaml └── k8s-yaml-templates ├── README.md ├── cloudwatch-namespace.yaml ├── cwagent-kubernetes-monitoring ├── README.md ├── cwagent-configmap.yaml ├── cwagent-daemonset.yaml └── cwagent-serviceaccount.yaml ├── cwagent-statsd ├── README.md ├── cwagent-statsd-configmap.yaml ├── cwagent-statsd-daemonset.yaml └── cwagent-statsd-deployment.yaml ├── fluentd ├── README.md ├── fluentd-configmap.yaml └── fluentd.yaml ├── generate.sh └── quickstart ├── README.md └── cwagent-fluentd-quickstart.yaml /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/README.md -------------------------------------------------------------------------------- /cloudwatch-agent-dockerfile/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/cloudwatch-agent-dockerfile/Dockerfile -------------------------------------------------------------------------------- /container-insights-manifest-update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/container-insights-manifest-update.sh -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/daemon-service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/daemon-service/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cloudformation-quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cloudformation-quickstart/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cloudformation-quickstart/cwagent-ecs-instance-metric-cfn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cloudformation-quickstart/cwagent-ecs-instance-metric-cfn.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cwagent-ecs-instance-metric.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/daemon-service/cwagent-ecs-instance-metric/cwagent-ecs-instance-metric.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-awsvpc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-awsvpc.yaml -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-bridge-host.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cloudformation-quickstart/cwagent-ecs-prometheus-metric-for-bridge-host.yaml -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cwagent-prometheus-task-definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/cwagent-prometheus-task-definition.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/cw_dashboard_awsappmesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/cw_dashboard_awsappmesh.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/cw_dashboard_javajmx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/cw_dashboard_javajmx.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/cw_dashboard_memcached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/cw_dashboard_memcached.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/cw_dashboard_redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/cw_dashboard_redis.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/memcached/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/memcached/memcached-traffic-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/memcached/memcached-traffic-sample.yaml -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/redis/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/redis/redis-traffic-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/replica-service/cwagent-prometheus/sample_traffic/redis/redis-traffic-sample.yaml -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/combination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/combination/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/combination/combination-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/combination/combination-ec2.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/combination/combination-fargate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/combination/combination-fargate.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf-ec2.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf-fargate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf-fargate.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics-ec2.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics-fargate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics-fargate.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/README.md -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd-ec2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd-ec2.json -------------------------------------------------------------------------------- /ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd-fargate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/ecs-task-definition-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd-fargate.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/combination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/combination/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/combination/combination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/combination/combination.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cloudwatch-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cloudwatch-namespace.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-configmap-enhanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-configmap-enhanced.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-configmap.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset-windows.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-daemonset.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/cwagent/cwagent-serviceaccount.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-compatible.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-compatible.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-configmap.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit-windows.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluent-bit/fluent-bit.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluentd/fluentd-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluentd/fluentd-configmap.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluentd/fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/fluentd/fluentd.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart-enhanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart-enhanced.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart-windows.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart-windows.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluent-bit-quickstart.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluentd-quickstart-enhanced.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluentd-quickstart-enhanced.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluentd-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/container-insights-monitoring/quickstart/cwagent-fluentd-quickstart.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-fluentd-xray/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-fluentd-xray/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-fluentd-xray/cwagent-fluentd-xray-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-fluentd-xray/cwagent-fluentd-xray-quickstart.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-sdkmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-sdkmetrics/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-statsd/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-statsd/cwagent-statsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/daemonset/cwagent-statsd/cwagent-statsd.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/combination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/combination/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/combination/combination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/combination/combination.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks-fargate.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks-fargate.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks-windows-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks-windows-exporter.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-eks.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-k8s.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/prometheus-k8s.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/cw_dashboard_awsappmesh.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/appmesh/cw_dashboard_awsappmesh.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/fluent-bit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/fluent-bit/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/fluent-bit/cw_dashboard_fluent_bit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/fluent-bit/cw_dashboard_fluent_bit.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/haproxy-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/haproxy-ingress/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/haproxy-ingress/cw_dashboard_haproxy_ingress.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/haproxy-ingress/cw_dashboard_haproxy_ingress.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/cw_dashboard_javajmx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/javajmx/cw_dashboard_javajmx.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/kubernetes_api_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/kubernetes_api_server/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/kubernetes_api_server/cw_dashboard_kubernetes_api_server.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/kubernetes_api_server/cw_dashboard_kubernetes_api_server.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/cw_dashboard_memcached.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/memcached/cw_dashboard_memcached.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/nginx-ingress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/nginx-ingress/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/nginx-ingress/cw_dashboard_nginx_ingress_controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/nginx-ingress/cw_dashboard_nginx_ingress_controller.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/cw_dashboard_redis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_cloudwatch_dashboards/redis/cw_dashboard_redis.json -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/nginx-traffic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/nginx-traffic/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/nginx-traffic/nginx-traffic-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/nginx-traffic/nginx-traffic-sample.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/redis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/redis/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/redis/redis-traffic-sample.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_traffic/redis/redis-traffic-sample.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_windows_exporter/sample-net-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_windows_exporter/sample-net-app.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_windows_exporter/windows-exporter.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-prometheus/sample_windows_exporter/windows-exporter.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-sdkmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-sdkmetrics/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-statsd/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/service/cwagent-statsd/cwagent-statsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/service/cwagent-statsd/cwagent-statsd.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/combination/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/combination/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/combination/combination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/combination/combination.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-emf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-emf/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-emf/cwagent-emf.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-sdkmetrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-sdkmetrics/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-sdkmetrics/cwagent-sdkmetrics.yaml -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-statsd/README.md -------------------------------------------------------------------------------- /k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-deployment-manifest-templates/deployment-mode/sidecar/cwagent-statsd/cwagent-statsd.yaml -------------------------------------------------------------------------------- /k8s-quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-quickstart/README.md -------------------------------------------------------------------------------- /k8s-quickstart/cwagent-custom-resource-definitions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-quickstart/cwagent-custom-resource-definitions.yaml -------------------------------------------------------------------------------- /k8s-quickstart/cwagent-operator-rendered.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-quickstart/cwagent-operator-rendered.yaml -------------------------------------------------------------------------------- /k8s-quickstart/cwagent-version.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-quickstart/cwagent-version.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/README.md -------------------------------------------------------------------------------- /k8s-yaml-templates/cloudwatch-namespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cloudwatch-namespace.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-kubernetes-monitoring/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-kubernetes-monitoring/README.md -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-configmap.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-daemonset.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-serviceaccount.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-kubernetes-monitoring/cwagent-serviceaccount.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-statsd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-statsd/README.md -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-statsd/cwagent-statsd-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-statsd/cwagent-statsd-configmap.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-statsd/cwagent-statsd-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-statsd/cwagent-statsd-daemonset.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/cwagent-statsd/cwagent-statsd-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/cwagent-statsd/cwagent-statsd-deployment.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/fluentd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/fluentd/README.md -------------------------------------------------------------------------------- /k8s-yaml-templates/fluentd/fluentd-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/fluentd/fluentd-configmap.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/fluentd/fluentd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/fluentd/fluentd.yaml -------------------------------------------------------------------------------- /k8s-yaml-templates/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/generate.sh -------------------------------------------------------------------------------- /k8s-yaml-templates/quickstart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/quickstart/README.md -------------------------------------------------------------------------------- /k8s-yaml-templates/quickstart/cwagent-fluentd-quickstart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/amazon-cloudwatch-container-insights/HEAD/k8s-yaml-templates/quickstart/cwagent-fluentd-quickstart.yaml --------------------------------------------------------------------------------