I see that the RabbitMQ cluster initiates connection termination in my application logs. So I'd like to find out a reason. Click-to-deploy GCP's service was used to deploy a pretty standard RabbitMQ cluster. According to official RabbitMQ docs, the default logs location is $RABBITMQ_LOG_BASE/$RABBITMQ_NODENAME.log
, however the $RABBITMQ_LOG_BASE
isn't even set. The only env variable related to logs set is RABBITMQ_LOGS=-
, which AFAICS resolves to sending all the logs to a stdout
rather then a file.
So the question is: what should I do to find my logs (if there do exist and I missed something) or how can I modify my env/rabbitmq configuration file to ensure logs are written and accessible.