This example will introduce how to use AWS-OTel-Collector to send application traces and metrics on AWS EKS. This instruction provided the data emitter image that will generate OTLP format of metrics and traces data to AWS CloudWatch and X-Ray consoles. Please follow the steps below to try ADOT Collector Beta.
- Open the IAM console at https://console.aws.amazon.com/iam/.
- In the navigation pane, choose Policies.
- Choose Create policy, JSON.
- Enter the following policy:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"logs:PutLogEvents",
"logs:CreateLogGroup",
"logs:CreateLogStream",
"logs:DescribeLogStreams",
"logs:DescribeLogGroups",
"xray:PutTraceSegments",
"xray:PutTelemetryRecords",
"xray:GetSamplingRules",
"xray:GetSamplingTargets",
"xray:GetSamplingStatisticSummaries",
"ssm:GetParameters"
],
"Resource": "*"
}
]
}
- Choose Review policy.
- On the Review policy page, enter
EKS-AWSOTel
for the Name and choose Create policy.
- Open the Amazon EC2 console at https://console.aws.amazon.com/ec2/.
- Select one of the worker node instances and choose the IAM role in the description.
- On the IAM role page, choose Attach policies.
- In the list of policies, select the check box next to
EKS-AWSOTel
. If necessary, use the search box to find this policy. - Choose Attach policies.
The easiest way to deploy AWSOTelCollector on Amazon EKS is to run it as a sidecar, defining it in the same pod definition as your application.
- Create a Kubernetes namespace.
kubectl create namespace aws-otel-eks
- Setup AWS_REGION and CLUSTER_NAME for exporting metrics to CloudWatch
export CLUSTER_NAME=<eks-cluster-name>
export AWS_REGION=<aws-region>
- Deploy the application. An example config template can be found here.
- Replace
{{region}}
with the name of the region where the logs are published (e.g.us-west-2
). - Replace
{{cluster_name}}
with the actual eks cluster name.
cat otel-cloudwatch-sidecar.yaml |
sed "s/{{region}}/$AWS_REGION/g" |
sed "s/{{cluster_name}}/$CLUSTER_NAME/g" |
kubectl apply -f -
- View the resources in the
aws-otel-eks
namespace.
kubectl get all -n aws-otel-eks
- View the details of the deployed deployment.
kubectl -n aws-otel-eks describe deployment aws-otel-eks-sidecar
The example template provided runs the AWS-OTel-Collector as sidecar to send application metrics and traces on Amazon EKS. We run two applications: the customer’s application (aws-otel-emitter
) and the AWSOTelCollector aws-otel-collector
. Running the AWSOTelCollector in the same application as the main application allows the AWSOTelCollector to collect the metric/trace data for the customer’s application. We also call running the AWSOTelCollector in this way a "Sidecar".
View Your Metrics
You should now be able to view your metrics in your CloudWatch console. In the navigation bar, click on Metrics. The collected AWSOTelCollector metrics can be found in the AWSObservability/CloudWatchEKSService namespace. Ensure that your region is set to the region set for your cluster.