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

feita há um ano595 visualizações
1 Resposta
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
respondido há um ano

Você não está conectado. Fazer login para postar uma resposta.

Uma boa resposta responde claramente à pergunta, dá feedback construtivo e incentiva o crescimento profissional de quem perguntou.

Diretrizes para responder a perguntas