Install Observe Agent on Amazon ECS (EC2)¶
Note
These instructions apply to tenants created on or after June 6, 2025. If your tenant was created earlier, follow the legacy guide: Install Observe Agent on Amazon ECS (EC2) [Legacy]. Interested in upgrading to the new experience? Open Docs & Support → Contact Support in the product and let us know.
These steps guide you through building a custom Docker image of the Observe Agent with a configuration file, pushing that image to Amazon ECR, creating an ECS task definition that uses it, and finally running it as a service to collect container logs, metrics and traces from your ECS Cluster.
Warning
If you’re using Observe Agent v1.x, please follow Install Observe Agent v1.x on Amazon ECS (EC2)
Installation¶
Prerequisites¶
AWS CLI installed and configured
Access to an ECS cluster running on EC2
Permissions to create and manage Amazon ECR repositories and CloudWatch log groups
Proper IAM roles for ECS tasks and execution (including permissions for CloudWatch Logs and ECR)
Prepare the Observe Agent configuration¶
Create the observe-agent.yaml
configuration file
# Observe data token (ex: a1b2c3d4e5f6g7h8i9k0:l1m2n3o4p5q6r7s8t9u0v1w2x3y4z5a6)
token: "${TOKEN}"
# Target Observe collection url (ex: https://123456789012.collect.observeinc.com/)
observe_url: "${OBSERVE_URL}"
self_monitoring:
enabled: true
host_monitoring:
enabled: false
logs:
enabled: false
include:
metrics:
host:
enabled: false
process:
enabled: false
forwarding:
enabled: true
metrics:
output_format: otel
otel_config_overrides:
receivers:
otlp:
protocols:
grpc:
endpoint: 0.0.0.0:4317
http:
endpoint: 0.0.0.0:4318
awsecscontainermetrics:
collection_interval: 20s
filelog/ecs:
include: [/var/lib/docker/containers/**/*.log]
include_file_path: true
storage: file_storage
retry_on_failure:
enabled: true
max_log_size: 4MiB
service:
pipelines:
metrics/ecs:
receivers: [awsecscontainermetrics]
processors: [memory_limiter, resourcedetection, resourcedetection/cloud, batch]
exporters: [otlphttp/observemetrics]
logs/ecs:
receivers: [filelog/ecs]
processors: [memory_limiter, resourcedetection, resourcedetection/cloud, batch]
exporters: [otlphttp/observe, count]
Build and Push the docker image to Amazon ECR¶
Create the
Dockerfile
Note
To use a specific version, please visit https://github.com/observeinc/observe-agent/releases.
FROM observeinc/observe-agent:latest
COPY observe-agent.yaml /etc/observe-agent/observe-agent.yaml
Build the docker image
docker buildx build --platform=linux/amd64 -t observe-agent:latest .
Create an ECR repository In the AWS Management Console or via the CLI, create a repository named
observe/observe-agent
. The repository URI will look like this:
<your_account_id>.dkr.ecr.<your_region>.amazonaws.com/observe/observe-agent
Push the image to ECR
aws ecr get-login-password --region <your_region> | docker login --username AWS --password-stdin <your_account_id>.dkr.ecr.<your_region>.amazonaws.com
docker tag observe-agent:latest <your_account_id>.dkr.ecr.<your_region>.amazonaws.com/observe/observe-agent:latest
docker push <your_account_id>.dkr.ecr.<your_region>.amazonaws.com/observe/observe-agent:latest
Create a CloudWatch log group for the Observe Agent¶
Before running the task, ensure a CloudWatch log group exists for your agent logs:
aws logs create-log-group --log-group-name /aws/ecs/observe/observe-agent --region <your_region>
Create the ECS task definition¶
Update the fields below with your values:
<your_account_id>
: Your AWS account ID<your_region>
: The AWS region (e.g.,ca-central-1
)<YOUR_INGEST_TOKEN>
: Your instance’s ingest token you create from the Add Data for Linux page (ex: a1b2c3d4e5f6g7h8i9k0:l1m2n3o4p5q6r7s8t9u0v1w2x3y4z5a6)<YOUR_OBSERVE_COLLECTION_ENDPOINT>
: Your Observe collection endpoint URL (e.g., https://123456789012.collect.observeinc.com/)<your_ecs_task_role>
: An IAM role ARN granting necessary permissions to the task<your_ecs_execution_role>
: An IAM role ARN with permissions to read from ECR and write logs to CloudWatch
Note
Some Observe instances may optionally use a name instead of Customer ID; if this is the case for your instance, contact your Observe Data Engineer to discuss implementation. A stem name will work as is, but a DNS redirect name may require client configuration.
Make sure the execution role has logs:CreateLogStream
and logs:PutLogEvents
permissions.
{
"family": "observe-agent-task",
"containerDefinitions": [
{
"name": "observe-agent",
"image": "<your_account_id>.dkr.ecr.<your_region>.amazonaws.com/observe/observe-agent:latest",
"cpu": 100,
"memory": 512,
"portMappings": [
{
"containerPort": 4317,
"protocol": "tcp"
},
{ "containerPort": 4318,
"protocol": "tcp"
}
],
"essential": true,
"environment": [
{
"name": "TOKEN",
"value": "<YOUR_INGEST_TOKEN>"
},
{
"name": "OBSERVE_URL",
"value": "<YOUR_OBSERVE_COLLECTION_ENDPOINT>"
}
],
"mountPoints": [
{
"sourceVolume": "docker_logs",
"containerPath": "/var/lib/docker/containers",
"readOnly": true
},
{
"sourceVolume": "docker_sock",
"containerPath": "/var/run/docker.sock",
"readOnly": true
}
],
"volumesFrom": [],
"readonlyRootFilesystem": false,
"logConfiguration": {
"logDriver": "awslogs",
"options": {
"awslogs-group": "/aws/ecs/observe/observe-agent",
"awslogs-region": "<your_region>",
"awslogs-stream-prefix": "ecs"
}
},
"systemControls": []
}
],
"taskRoleArn": "arn:aws:iam::<your_account_id>:role/<your_ecs_task_role>",
"executionRoleArn": "arn:aws:iam::<your_account_id>:role/<your_ecs_execution_role>",
"networkMode": "bridge",
"volumes": [
{
"name": "docker_logs",
"host": {
"sourcePath": "/var/lib/docker/containers"
}
},
{
"name": "docker_sock",
"host": {
"sourcePath": "/var/run/docker.sock"
}
}
],
"placementConstraints": [],
"requiresCompatibilities": [
"EC2"
]
}
Register this task definition using the AWS CLI:
aws ecs register-task-definition --cli-input-json file://observe-agent-task-definition.json --region <your_region>
Create an ECS service¶
aws ecs create-service \
--cluster <your_ecs_cluster_name> \
--service-name observe-agent \
--task-definition observe-agent-task \
--deployment-controller type=ECS \
--launch-type EC2 \
--scheduling-strategy DAEMON \
--region <your_region>
Configure application instrumentation¶
Once the Observe Agent is deployed, configure your application instrumentation or set the OTEL_EXPORTER_OTLP_ENDPOINT
environment variable to one of the following addresses to send application telemetry including traces to the Observe Agent.
Note
When setting up the endpoint to send traces, make sure you use the path that your OTLP library requires. Some libraries need traces to go to /v1/traces
, while others expect them at the root path /
.
OTLP/HTTP endpoint:
http://localhost:4318
OTLP/grpc endpoint:
http://localhost:4317
Learn more about how to instrument your app
If your application is not able to reach the OTLP endpoints above, register the observe-agent
ECS service in AWS Cloud Map
Next steps¶
Use both the Log Explorer and the Metric Explorer to monitor your systems. To analyze your trace data, explore both the Trace Explorer and the Service Explorer