[warning] <0.112.0> lager_error_logger_h dropped 42 messages in the last second that exceeded the limit of 1000 messages/sec [warning] lager_file_backend dropped 32 messages in the last second that exceeded the limit of 50 messages/sec
The lager warning log messages are expected when there are too many logging messages per second, exceeding beyond 50 messages/second.
Note: Please note that logging messages are different from AMQP messages.
One possible cause for the error message the connection churn being too high, which will make the broker log connect and disconnect.
To resolve this issue, follow the steps below:
[
{lager, [
{error_logger_hwm, 300}
]}
].
rabbitmqctl eval 'application:get_env(lager, error_logger_hwm).'