Skip to content

View background tasks

AuthProxy Admin UI itself provides a Tasks view that allows you to monitor the Asynq background tasks.

Background tasks in the Admin UI

If you would like further granularity, you can use Asynq tools directly. To manage tasks in asynq, install the asynq cli:

Terminal window
go install github.com/hibiken/asynq/tools/asynq@latest

and run the cli:

Terminal window
asynq dash

run the web monitoring tool:

Terminal window
docker run --rm \
-d \
--name asynqmon \
--network authproxy \
-p 8090:8080 \
hibiken/asynqmon \
--redis-addr=redis-server:6379

open the web ui:

Terminal window
open http://localhost:8090

Asynqmon task dashboard