skip to Main Content

How I can send or export logs from my AWS Lambda function to S3 without using by CloudWatch?

Is there another option?

2

Answers


  1. This AWS Sample shows you have to use a Lambda extension to send logs to S3. But there is currently no way to stop logs from going to CloudWatch.

    Login or Signup to reply.
  2. Yes, you can stop your cloudwatch log ingesting from function and send the log to another destination.
    Please check- Disabling logging to CloudWatch Logs

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search