To collect the AWS CloudWatch logs for a Tines service, perform the following steps:
First, get the list of log groups with the following command:
aws logs describe-log-groupsNext, get the list of log streams with the following command:
aws logs describe-log-streamsThen run the following command with the desired log group name and the most recent log stream for that group:
aws logs get-log-events \
--log-group-name (log group name) --log-stream-name (log stream name) \
--output text > tines-service-log.log