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

質問済み 1年前598ビュー
1回答
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
回答済み 1年前

ログインしていません。 ログイン 回答を投稿する。

優れた回答とは、質問に明確に答え、建設的なフィードバックを提供し、質問者の専門分野におけるスキルの向上を促すものです。

質問に答えるためのガイドライン

関連するコンテンツ