asynq的控制面板
Go to file
dependabot[bot] 907b72442a Bump @types/jest from 26.0.22 to 26.0.24 in /ui
Bumps [@types/jest](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/jest) from 26.0.22 to 26.0.24.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/jest)

---
updated-dependencies:
- dependency-name: "@types/jest"
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2021-07-10 10:22:10 -07:00
.github Use go1.16 in release workflow 2021-06-06 07:44:49 -07:00
ui Bump @types/jest from 26.0.22 to 26.0.24 in /ui 2021-07-10 10:22:10 -07:00
.dockerignore Add option to use Docker container to run Asynqmon 2021-04-05 16:35:15 -07:00
.gitignore Save task-rows-per-page as user settings 2021-04-10 06:47:33 -07:00
CHANGELOG.md v0.1-beta1 2021-01-31 21:50:46 -08:00
conversion_helpers.go Fix build 2021-06-29 16:47:25 -07:00
Dockerfile Add workflow to publish Docker image to dockerhub 2021-04-08 17:27:21 -07:00
go.mod Update go.mod to depend on asynq v0.18 2021-06-29 16:47:25 -07:00
go.sum Update go.mod to depend on asynq v0.18 2021-06-29 16:47:25 -07:00
LICENSE Add README and LICENSE files 2021-01-30 19:18:44 -08:00
main.go Update to new asynq API 2021-06-29 16:47:25 -07:00
Makefile param typo 2021-06-07 12:02:01 -07:00
middlewares.go Update logging middleware to log in apache common format 2020-12-08 06:46:27 -08:00
queue_handlers.go Update to new asynq API 2021-06-29 16:47:25 -07:00
README.md Update readme 2021-06-29 16:47:25 -07:00
redis_info_handlers.go Add redis-url and redis-insecure-tls command line options 2021-04-26 16:30:27 -07:00
scheduler_entry_handlers.go Update to new asynq API 2021-06-29 16:47:25 -07:00
server_handlers.go Update to new asynq API 2021-06-29 16:47:25 -07:00
task_handlers.go Fix build 2021-06-29 16:47:25 -07:00

Asynqmon logo

A modern web based tool for monitoring & administrating Asynq queues, tasks and message broker

☝️ Important Note: Current version of Asynqmon is compatible with Asynq v0.18.x or above.

Install

Release binaries

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

Docker image

To pull the Docker image:

# Pull the latest image
docker pull hibiken/asynqmon

# Or specify the image by tag
docker pull hibiken/asynqmon[:tag]

Building from source

To build Asynqmon from source code, make sure you have Go installed (download). Version 1.16 or higher is required. You also need Node.js and Yarn installed in order to build the frontend assets.

Download the source code of this repository and then run:

make build

The asynqmon binary should be created in the current directory.

Building Docker image locally

To build Docker image locally, run:

make docker

Run

To use the defaults, simply run and open http://localhost:8080.

# with a local binary
./asynqmon

# with docker
docker run --rm \
    --name asynqmon \
    -p 8080:8080 \
    hibiken/asynqmon

By default, Asynqmon web server listens on port 8080 and connects to a Redis server listening on 127.0.0.1:6379.

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

# with a local binary
./asynqmon --port=3000 --redis-addr=localhost:6380

# with Docker (connect to a Redis server running on the host machine)
docker run --rm \
    --name asynqmon \
    -p 3000:3000 \
    hibiken/asynqmon --port=3000 --redis-addr=host.docker.internal:6380

# with Docker (connect to a Redis server running in the Docker container)
docker run --rm \
    --name asynqmon \
    --network dev-network \
    -p 8080:8080 \
    hibiken/asynqmon --redis-addr=dev-redis:6379

To see all available flags, run:

# with a local binary
./asynqmon --help

# with Docker
docker run hibiken/asynqmon --help

Next, go to localhost:8080 and see Asynqmon dashboard:

Web UI Queues View

Tasks view

Web UI TasksView

Settings and adaptive dark mode

Web UI Settings and adaptive dark mode

License

Copyright (c) 2019-present Ken Hibino and Contributors. Asynqmon is free and open-source software licensed under the MIT License. Official logo was created by Vic Shóstak and distributed under Creative Commons license (CC0 1.0 Universal).