For now as I can understand we have such flow:
- workers publish logs in rabbit in queue logs
- coordinator pull logs from this queue logs
- coordinator saves logs into postgres DB
- after I press button Logs I can see them (logs from DB)
This makes some problems - if we have a lot of workers and logs I can see more than x millions mesages in the queue logs. As I can see coordinator doesn't pull and save logs in DB in proper time and that means if I press button Logs it shows nothing. And from time to time I have to purge this queue to see logs

Possible options:
- disable logging (use alternatives like ELK stack)
- adjust coordinator\logging performance
For now as I can understand we have such flow:
This makes some problems - if we have a lot of workers and logs I can see more than x millions mesages in the queue logs. As I can see coordinator doesn't pull and save logs in DB in proper time and that means if I press button Logs it shows nothing. And from time to time I have to purge this queue to see logs

Possible options: