/celery-insights

Real-Time monitoring tool for Celery

Primary LanguageTypeScriptBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

Celery Insights

Welcome to Celery Insights, the ultimate monitoring tool for your Celery cluster!

With Celery Insights, you can effortlessly track your Celery cluster in real-time. Our modern web interface enables you to conveniently view worker status, task information, and workflow graphs, all updated using websockets.

Inspired by Celery Flower, this tool takes Celery monitoring to the next level. Try Celery Insights and transform the way you monitor your Celery cluster!

View Demo

Installation

Celery Insights is provided as a Docker image and can be launched using a single command:

docker run -p 8555:8555 --name celery-insights ghcr.io/danyi1212/celery-insights:latest

Next, navigate to http://localhost:8555/ and begin the welcome tour.

Enabling Celery Events

Celery Insights relies on Celery events to monitor your Celery cluster.

The recommended configuration for using Celery Insights are:

app = Celery("myapp")
app.conf.worker_send_task_events = True  # Enables task events
app.conf.task_send_sent_event = True  # Enables sent events
app.conf.task_track_started = True  # (opt) Update task result state to STARTED
app.conf.result_extended = True  # (opt) Store args and kwargs in the result

Other events-related configurations should be left as default.

For more information on Celery events configurations, please refer to the Celery documentation.

Advanced setup

Celery Insights comes pre-configured for localhost Redis as Result Backend and RabbitMQ as Broker.

Utilize the BROKER_URL and RESULT_BACKEND environment variables to customize the configuration for your specific setup.

If your setup requires extra Celery dependencies (e.g. msgpack, sqs, etc.), you may use the celery-insights-all Docker image instead.

For instance, the following example demonstrates a setup with Redis as the Broker and Memcache as the Result Backend:

docker run -p 8555:8555 --name celery-insights -e BROKER_URL=redis://host.docker.internal:6379/0 -e RESULT_BACKEND=cache+memcached://host.docker.internal:11211/ ghcr.io/danyi1212/celery-insights-all:latest

If you need more advanced Celery configuration, you can configure using a Config File.

Asking Questions and Reporting Bugs

If you've found a bug, we would like to know, so we can fix it! You might find immediate answers to your questions in our support chart. Please review the contributing guidelines for guidance on getting started.

For any questions, suggestions, or feature requests, please join the conversation in GitHub Discussions.

⚠️ WARNING

If you have discovered a security vulnerability, please DO NOT file a public issue. Instead, please report them directly to danyi1212@users.noreply.github.com.

Contributing

To contribute to Celery Insights, please review the contributing guidelines for guidance on how to get started.

License

Celery Insights is licensed under the BSD 3-clause license. See the LICENSE file for details.

Thank you for exploring Celery Insights! We hope it proves to be a valuable addition to your Celery cluster.