How can we install awslogs agent for python version 3.8.10

0

How can we install awslogs agent for python version 3.8.10

asked a year ago576 views
1 Answer
0

Hello,

CloudWatch Logs agent works watching log files from Amazon EC2 instances running Linux or Windows Server. According to your question, I understand that you have an application written in Python 3.8.10 and you would like to ingest logs into Cloudwatch Logs. You must write the log entries in files and setup CloudWatch Logs agent to watch the logs files and ingest the content published. Here some docs that can guide you:

  1. Use the unified CloudWatch agent to get started with CloudWatch Logs
  2. Create the CloudWatch Agent Configuration File with the Wizard

You will need to add a section like the following (described here), in your config file:

"collect_list": [ 
  {
    "file_path": "/opt/aws/amazon-cloudwatch-agent/logs/test.log", 
    "log_group_name": "test.log", 
    "log_stream_name": "test.log"
  },
  .....
]

Best regards!

AWS
answered a year ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions