user2890683
user2890683

Reputation: 411

Flower UI does not show celery workers and Tasks

I have installed flower for my django app using pip install flower. I start it using the command ./manage.py celery flower --port=5555. I get the following output after that.

[I 150324 16:40:47 command:106] Visit me at http://localhost:5555
[I 150324 16:40:47 command:107] Broker: django://localhost//
[E 150324 16:40:47 state:52] Dashboard and worker management commands are not available for 'sql' transport
[I 150324 16:40:47 mixins:225] Connected to django://localhost//

However I am not able to see any tasks and workers in the UI. Any pointers please.

Upvotes: 2

Views: 1704

Answers (1)

mher
mher

Reputation: 10846

You are using django db as a broker. Flower doesn't support sql transport.

Upvotes: 5

Related Questions