• Stars
    star
    386
  • Rank 110,565 (Top 3 %)
  • Language Jsonnet
  • License
    MIT License
  • Created over 3 years ago
  • Updated about 2 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

A Prometheus exporter for Celery metrics

celery-exporter Build Status Code style: black

celery-tasks-by-task

Table of Contents

Why another exporter?

While I was adding Celery monitoring to a client site I realized that the existing brokers either didn't work, exposed incorrect metric values or didn't expose the metrics I needed. So I wrote this exporter which essentially wraps the built-in Celery monitoring API and exposes all of the event metrics to Prometheus in real-time.

Features

  • Tested for both Redis and RabbitMQ
  • Uses the built in real-time monitoring component in Celery to expose Prometheus metrics
  • Tracks task status (task-started, task-succeeded, task-failed etc)
  • Tracks which workers are running and the number of active tasks
  • Follows the Prometheus exporter best practises
  • Deployed as a Docker image or Python single-file binary (via PyInstaller)
  • Exposes a health check endpoint at /health
  • Grafana dashboards provided by the Celery-mixin
  • Prometheus alerts provided by the Celery-mixin

Dashboards and alerts

Alerting rules can be found here. By default we alert if:

  • A task failed in the last 10 minutes.
  • No Celery workers are online.

Tweak these to suit your use-case.

The Grafana dashboard (seen in the image above) is here. You can import it directly into your Grafana instance.

There's another Grafana dashboards that shows an overview of Celery tasks. An image can be found in ./images/celery-tasks-overview.png. It can also be found here.

Usage

Celery needs to be configured to send events to the broker which the exporter will collect. You can either enable this via Celery configuration or via the Celery CLI.

Enable events using the CLI

To enable events in the CLI run the below command. Note that by default it doesn't send the task-sent event which needs to be configured in the configuration. The other events work out of the box.

$ celery -A <myproject> control enable_events

Enable events using the configuration:

# In celeryconfig.py
worker_send_task_events = True
task_send_sent_event = True

Configuration in Django:

# In settings.py
CELERY_WORKER_SEND_TASK_EVENTS = True
CELERY_TASK_SEND_SENT_EVENT = True
Running the exporter

Using Docker:

docker run -p 9808:9808 danihodovic/celery-exporter --broker-url=redis://redis.service.consul/1

Using the Python binary (for-non Docker environments):

curl -L https://github.com/danihodovic/celery-exporter/releases/download/latest/celery-exporter -o ./celery-exporter
chmod+x ./celery-exporter
./celery-exporter --broker-url=redis://redis.service.consul/1
Kubernetes

There's a Helm in the directory charts/celery-exporter for deploying the Celery-exporter to Kubernetes using Helm.

Environment variables

All arguments can be specified using environment variables with a CE_ prefix:

docker run -p 9808:9808 -e CE_BROKER_URL=redis://redis danihodovic/celery-exporter
Specifying optional broker transport options

While the default options may be fine for most cases, there may be a need to specify optional broker transport options. This can be done by specifying one or more --broker-transport-option parameters as follows:

docker run -p 9808:9808 danihodovic/celery-exporter --broker-url=redis://redis.service.consul/1 \
  --broker-transport-option global_keyprefix=danihodovic \
  --broker-transport-option visibility_timeout=7200

In case of extended transport options, such as sentinel_kwargs you can pass JSON string:, for example:

docker run -p 9808:9808 danihodovic/celery-exporter --broker-url=sentinel://sentinel.service.consul/1 \
  --broker-transport-option master_name=my_master \
  --broker-transport-option sentinel_kwargs="{\"password\": \"sentinelpass\"}"

The list of available broker transport options can be found here: https://docs.celeryq.dev/projects/kombu/en/stable/reference/kombu.transport.redis.html

Specifying an optional retry interval

By default, celery-exporter will raise an exception and exit if there are any errors communicating with the broker. If preferred, one can have the celery-exporter retry connecting to the broker after a certain period of time in seconds via the --retry-interval parameter as follows:

docker run -p 9808:9808 danihodovic/celery-exporter --broker-url=redis://redis.service.consul/1 \
  --retry-interval=5
Grafana Dashboards & Prometheus Alerts

Head over to the Celery-mixin in this subdirectory to generate rules and dashboards suited to your Prometheus setup.

Metrics

Name Description Type
celery_task_sent_total Sent when a task message is published. Counter
celery_task_received_total Sent when the worker receives a task. Counter
celery_task_started_total Sent just before the worker executes the task. Counter
celery_task_succeeded_total Sent if the task executed successfully. Counter
celery_task_failed_total Sent if the execution of the task failed. Counter
celery_task_rejected_total The task was rejected by the worker, possibly to be re-queued or moved to a dead letter queue. Counter
celery_task_revoked_total Sent if the task has been revoked. Counter
celery_task_retried_total Sent if the task failed, but will be retried in the future. Counter
celery_worker_up Indicates if a worker has recently sent a heartbeat. Gauge
celery_worker_tasks_active The number of tasks the worker is currently processing Gauge
celery_task_runtime_bucket Histogram of runtime measurements for each task Histogram
celery_queue_length The number of message in broker queue Gauge
celery_active_consumer_count The number of active consumer in broker queue (Only work for RabbitMQ and Qpid broker, more details at here) Gauge
celery_active_worker_count The number of active workers in broker queue Gauge
celery_active_process_count The number of active process in broker queue. Each worker may have more than one process. Gauge

Used in production at https://findwork.dev and https://django.wtf.

Development

Pull requests are welcome here!

To start developing run commands below to prepare your environment after the git clone command:

# Install dependencies and pre-commit hooks
poetry install
pre-commit install

# Test everything works fine
pre-commit run --all-files
docker-compose up -d
pytest --broker=memory      --log-level=DEBUG
pytest --broker=redis       --log-level=DEBUG
pytest --broker=rabbitmq    --log-level=DEBUG

More Repositories

1

generate-ssh-configs

Automatically generate ssh config files for your cloud servers
Go
135
star
2

django-allauth-ui

Nice looking templates for django-allauth
HTML
118
star
3

mjml-server

MJML wrapped in Express for use over HTTP
JavaScript
39
star
4

django_admin_chart_js

An example repo showing how to add Chart.js to Django admin
Python
37
star
5

django-postgres-fulltext-search

How to optimize Postgres full text search in Django
Python
20
star
6

borg-exporter

Prometheus exporter for Borg backups.
Python
16
star
7

testing-cloudflare-workers

Examples on how to test Cloudflare workers with Mocha.js and Chai.js
JavaScript
15
star
8

vim-ansible-vault

Manage vault secrets in vim
Python
11
star
9

.dotfiles

My dotfiles
Shell
9
star
10

docker-sopcast

Sopcast containerized
Shell
8
star
11

drone-promote

A Drone plugin which triggers promotions (deployments).
Python
5
star
12

django-disable-cache-headers

Middleware that disables caching headers during development in Django.
Python
4
star
13

docker-ansible

Dockerfile
4
star
14

ansible-role-borgbackup

Installs borgbackup and borgmatic and configures automated backups.
Python
4
star
15

steeef

Zsh steeef theme as a standalone repository
4
star
16

django.wtf

Django Package Index
Python
4
star
17

ansible-samson

Ansible modules for Samson
Python
3
star
18

scdl-docker

3
star
19

django-toolshed

Python
3
star
20

ansible-role-django

Python
3
star
21

ansible-role-openproject

An opinionated role that installs OpenProject as a single Docker container.
3
star
22

vim-snippets

Vim Snippet
2
star
23

ansible-role-redis

Python
2
star
24

cheats

2
star
25

superrequests

Python
2
star
26

dht

Python
2
star
27

nodejs-require.vim

Go to the file for the require() statement under the cursor.
Python
2
star
28

docker-s3rver

Dockerfile
2
star
29

ansible-role-consul

An Ansible role that deploys a consul cluster as containers.
Python
2
star
30

ansible-role-openresty

A role to deploy Openresty in a Docker container with useful plugins and libraries
Python
2
star
31

pgcli-docker

Pgcli dockerized
2
star
32

cookiecutter-django-app

Python
2
star
33

borgmatic-binary

Python
2
star
34

ansible-role-jobber

An Ansible role that installs Jobber on debian based architecture. https://dshearer.github.io/jobber
2
star
35

ansible-role-drone

Python
2
star
36

ansible-role-monitoring

Python
2
star
37

docker-vegeta

1
star
38

docker-gitlab-runner

Dockerfile
1
star
39

hn-comment-parser

Go
1
star
40

go-websocket-example

Go
1
star
41

dockerfiles

Dockerfile
1
star
42

action-ansible

Python
1
star
43

seo_friendly_urls_django

Example app with SEO optimized urls in Django
Python
1
star
44

DIT165

C
1
star
45

erl-chat-otp

Erlang
1
star
46

ansible-role-gitlab

Ruby
1
star
47

samson-docker

Dockerfile
1
star