Skip to main content

Python library for logging celery events

Project description

Celery Logger

celery-logger is a python library for logging celery events such as tasks received, tasks failed/succeeded and tasks retried, along with task args.

Features

  • Simple and flexible task logs
  • Multiple deployment options (docker, virtual machines)
  • Integration possibilities: ELK stack and AWS cloudwatch for example

How does it work?

Celery-logger connects with your message broker (such as redis, rabbitMQ or SQS) and logs the tasks on a file or stdout.

This way you can easily have multiple celery workers and see your logs in a single place.

Celery Logger Diagram

Sample project

We provided a sample project for playing around and seeing how it works.

Getting started:

# navigate to the sample-project folder
$ cd sample-project
# Build and start the containers:
$ docker-compose up

Querying logs

Make sure you are in the sample-project folder

Calling a few tasks

$ docker-compose exec celeryd python call_tasks.py

Tasks have been called!
Run `docker-compose logs -f celery-logger` to see the logger in action.

Taking a look in all events

$ docker-compose logs celery-logger 

Searching for failed tasks:

$ docker-compose logs celery-logger | grep task-failed

Searching for a specific task:

$ docker-compose logs celery-logger | grep "app.add"

Searching for a specific task and args:

$ docker-compose logs celery-logger | grep "app.add" | grep "(6, 1)"

image

Searching for a task id

$   docker-compose logs celery-logger | grep 20925a8c-03f7-4bd7-b3dd-24e2bc9e26e2

image

Installation

Use the package manager pip to install celery-logger.

pip install celerylogger

Usage

The executable will be available in the path as celery-logger:

# Display the help text
$ celery-logger -h
# Start logging from a redis broker
$ celery-logger --celery-broker redis://redis:6379/0

Authors

  • Sergio Oliveira - Initial work - Seocam
  • Thiago Ferreira - Improvements, documentation and current maintainer - thiagoferreiraw
  • André Girol - Packaging and distribution - Girol

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

celery-logger-0.0.3.tar.gz (4.7 kB view hashes)

Uploaded Source

Built Distribution

celery_logger-0.0.3-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page