asynq的控制面板
Go to file
2021-01-31 11:13:27 -08:00
node_modules Display queue memory usage in task view 2021-01-26 15:56:45 -08:00
ui Add README and LICENSE files 2021-01-30 19:18:44 -08:00
.gitignore Initial commit 2020-11-24 21:38:55 -08:00
conversion_helpers.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
go.mod Update asynq dep to v.15.0 2021-01-31 11:13:27 -08:00
go.sum Update asynq dep to v.15.0 2021-01-31 11:13:27 -08:00
LICENSE Add README and LICENSE files 2021-01-30 19:18:44 -08:00
main.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
Makefile Update makefile to use go1.16rc1 2021-01-29 23:03:45 -08:00
middlewares.go Update logging middleware to log in apache common format 2020-12-08 06:46:27 -08:00
package.json Display queue memory usage in task view 2021-01-26 15:56:45 -08:00
queue_handlers.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
README.md Add README and LICENSE files 2021-01-30 19:18:44 -08:00
redis_info_handlers.go Support command-line flags to configure redis connection and port to use 2021-01-08 07:16:48 -08:00
scheduler_entry_handlers.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
server_handlers.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
task_handlers.go Update code to use inspeq package 2021-01-28 19:47:58 -08:00
yarn.lock Display queue memory usage in task view 2021-01-26 15:56:45 -08:00

Asynqmon

Asynqmon is a web based tool for monitoring and administrating Asynq queues and tasks.

Installation

Release binaries

You can download the release binary for your system from the releases page.

Building from source

To build Asynqmon from source code, first ensure that have a working Go environment with version 1.16 or greater installed. You also need Node.js and Yarn installed in order to build the frontend assets.

Download the source code and then run:

$ make build

The asynqmon binary should be created in the current directory.

Usage

To start the server, run

$ asynqmon

Pass flags to specify port, redis server address, etc.

$ asynqmon --port=3000 --redis_addr=localhost:6380

License

Asynqmon is released under the MIT license. See LICENSE.