It is now possible to ship RabbitMQ logs of dedicated instances to AWS CloudWatch Logs. You can use AWS CloudWatch Logs to access your RabbitMQ log files.
You can find all CloudAMQP integration options under Integration tab in the control panel for your instances.
To submit logs to CloudWatch Logs, you need to create an IAM user with programmatic access and the following permissions: CreateLogGroup, CreateLogStream, DescribeLogGroups, DescribeLogStreams and PutLogEvents. Copy the following JSON and enter it in AWS console when creating IAM user permissions.
{ "Effect": "Allow", "Action": [ "logs:CreateLogGroup", "logs:CreateLogStream", "logs:DescribeLogGroups", "logs:DescribeLogStreams", "logs:PutLogEvents"], "Resource": "*" }
Choose an appropriate region and enter the Amazon Access Key ID and Secret Access Key of your Amazon account and press Enable.
When you've completed the steps above, you should be able to see your logs at CloudWatch Logs.
Please email us at contact@cloudamqp.com if you have any suggestions or feedback.