Skip to content

Releases: hibiken/asynqmon

v0.7.1

06 May 12:52
Compare
Choose a tag to compare

This patch release fixes --redis-url flag to support redis-sentinel URL documented in https://pkg.go.dev/github.com/hibiken/asynq#ParseRedisURI.

v0.7.0

12 Apr 00:51
Compare
Choose a tag to compare

Version 0.7 added support for Task Aggregation feature.

v0.6.1

17 Mar 13:17
Compare
Choose a tag to compare

Fixed

  • (ui): Show metrics link in sidebar when --prometheus-addr flag is provided

v0.6.0

02 Mar 14:38
Compare
Choose a tag to compare

This version includes a few improvements and a fix.

Added

  • (cmd): Added --read-only flag to specify read-only mode
  • (pkg): Added Options.ReadOnly to restrict user to view-only mode
  • (ui): Hide action buttons in read-only mode
  • (ui): Display queue latency in dashboard page and queue detail page.
  • (ui): Added copy-to-clipboard button for task ID in tasks list-view page.
  • (ui): Use logo image in the appbar (thank you @koddr!)

Fixed

  • (ui): Pagination in ActiveTasks table is fixed

v0.5.0

20 Dec 00:33
Compare
Choose a tag to compare

Version 0.5 added support for Prometheus integration.

Added

  • (cmd): Added --enable-metrics-exporter option to export queue metrics.
  • (cmd): Added --prometheus-addr to enable metrics view in Web UI.
  • (pkg): Added Options.PrometheusAddress to enable metrics view in Web UI.

v0.4.0

06 Nov 22:28
Compare
Choose a tag to compare

This release introduces "completed" task state.
Please update this version of asynqmon if you are using asynq v0.19.x.

v0.3.2

22 Oct 13:53
Compare
Choose a tag to compare

This release is a fast-follow to v0.3.1 which broke build, which is fixed in this release.

v0.3.1

21 Oct 14:21
Compare
Choose a tag to compare

Added

  • (cmd): Added --max-payload-length to allow specifying number of characters displayed for payload, defaults to 200 chars
  • (pkg): DefaultPayloadFormatter is now exported from the package

v0.3.0

12 Oct 22:40
Compare
Choose a tag to compare

Asynqmon as a importable package

As of this version (v0.3.0), Asynqmon can be installed as a go package and included in other web application. The package exports a HTTPHandler type which serves asynqmon application at the specified root path. See README for examples.

No changes were made to the release binary in this release.

v0.2.3

08 Sep 00:06
Compare
Choose a tag to compare

This release includes an addition of redis cluster support.

Added

  • Added --redis-cluster-nodes flag to specify redis cluster nodes to connect to
  • When --redis-cluster-nodes flag is passed, redis-info page shows redis cluster information (e.g. queue placement on cluster, cluster info command output, etc)