As of now i am getting ELB logs from S3. I want to add one more field inside the logs(elb access log). Is it possible to add new field when generating new access log?
CodePudding user response:
Sadly its not possible. Access logs have fixed format. If you require anything else that that, you have to produce custom logs from your application.
CodePudding user response:
Access log format is fixed and you can't modify it.
The only thing that you can do is to put additional code in your application and when it loaded it can store additional details with custom log.
