LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

lazycelery

TUI for monitoring and managing Celery workers and tasks

TLDR

Launch the Celery monitor
$ lazycelery
copy
Run interactive setup
$ lazycelery init
copy
Override the broker URL
$ lazycelery --broker [redis://localhost:6379/0]
copy
Show current configuration
$ lazycelery config
copy
Update the broker URL
$ lazycelery set-broker [redis://localhost:6379/0]
copy
Set refresh interval in milliseconds
$ lazycelery set-refresh [1000]
copy
Use custom config file
$ lazycelery --config [~/.config/lazycelery/config.toml]
copy

SYNOPSIS

lazycelery [command] [options]

DESCRIPTION

lazycelery is a terminal UI for monitoring and managing Celery workers and tasks, inspired by lazydocker and lazygit. It provides a keyboard-driven interface to switch between worker, queue, and task views, showing how many tasks are in each queue and what each worker is doing.Features include real-time worker monitoring, queue management with message counts, task listing with status tracking, search and filter capabilities, task retry and revoke functionality, and queue purge operations.

PARAMETERS

--broker URL

Override the broker URL for this session.
--config FILE
Use a custom configuration file.

CAVEATS

Currently supports Redis-based Celery brokers. Requires a running Celery infrastructure to connect to. Install via `cargo install lazycelery` or Homebrew.

HISTORY

lazycelery was created by Fguedes90 and is written in Rust.

SEE ALSO

Copied to clipboard
Kai