I am building a basic monitoring tool for celery tasks that will show Running, successful or failed for each task. So I’m just pulling task IDs and printing their statuses. Getting the finished ones is easy since I can pull them from database.
But I’m unable to pull currently running tasks. Going off from this question, I tried to utilize the control.inspect methods but they all return none. And the other answers pertain to other brokers.
There’s also Flower but that doesn’t support mongodb as far as I can tell.
Is this possible with mongodb as a broker?
Using celery 4.4.1