b6b8362666
Bumps [react-syntax-highlighter](https://github.com/react-syntax-highlighter/react-syntax-highlighter) from 15.3.0 to 15.4.3. - [Release notes](https://github.com/react-syntax-highlighter/react-syntax-highlighter/releases) - [Changelog](https://github.com/react-syntax-highlighter/react-syntax-highlighter/blob/master/CHANGELOG.MD) - [Commits](https://github.com/react-syntax-highlighter/react-syntax-highlighter/compare/v15.3.0...v15.4.3) Signed-off-by: dependabot[bot] <support@github.com> |
||
---|---|---|
.github | ||
ui | ||
.gitignore | ||
CHANGELOG.md | ||
conversion_helpers.go | ||
go.mod | ||
go.sum | ||
LICENSE | ||
main.go | ||
Makefile | ||
middlewares.go | ||
package.json | ||
queue_handlers.go | ||
README.md | ||
redis_info_handlers.go | ||
scheduler_entry_handlers.go | ||
server_handlers.go | ||
task_handlers.go | ||
yarn.lock |
Asynqmon
Asynqmon is a web based tool for monitoring and administrating Asynq queues and tasks.
Compatibility
Current version of Asynqmon is compatible with Asynq v0.15 or above.
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
Asynqmon server needs to connect to redis server to serve data. By default, it connects to redis server running on port 6379 locally, and the server listens on port 8080.
To use the defaults, simply run and open http://localhost:8080.
$ asynqmon
Pass flags to specify port, redis server address, etc.
$ asynqmon --port=3000 --redis_addr=localhost:6380
To see all available flags, run
$ asynqmon --help
License
Asynqmon is released under the MIT license. See LICENSE.