whitebear
whitebear

Reputation: 12445

Setting the each log stream size of lambda?

Lambda makes the log streams automatically,

However I wonder why each log stream are short.

I need to move the log from cloudwatch to S3 and download.

when files are separated so I need to download them many times manually. (I can't use ftp or aws-cli)

Is there anyt way to set the size of each log streams?

Upvotes: 1

Views: 85

Answers (1)

Marcin
Marcin

Reputation: 238537

You can't change that. But the easiest way to send CW logs to S3 is through CloudWatch Logs subscription filters. In your case you could setup:

CW Logs ---> Firehose ---> S3

Upvotes: 1

Related Questions