2 Answers
- Newest
- Most votes
- Most comments
1
logging property in ContainerDefinitionOptions passed to ContainerDefinitionOptions.
This is where it is documented.
Sample Code(nodeJs):
taskDefinition.addContainer('Container', {
image: ecs.ContainerImage.fromEcrRepository(
respository,`1.0`),
logging: ecs.LogDrivers.awsLogs({ streamPrefix: 'my-log-group', logRetention: 30 }),
});
0
Finally figured out the logging option in add_container is the on that sends it to cloudwatch.
answered 4 years ago

Ty for the response. Was able to get this to work.