vintasoftware / django-celerybeat-status

A library that integrates with django admin and shows in a simple GUI when your periodic are going to run next.

Home Page:https://pypi.org/project/django-celerybeat-status

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Celery Beat Status

A library that integrates with django admin and shows in a simple GUI when your periodic are going to run next.

Instalation

pip install django-celerybeat-status

Configuration

  1. Add 'celerybeat_status' to your INSTALLED_APPS variable in django settings
INSTALLED_APPS = [
  ...
  'celerybeat_status',
]
  1. Create a url for the status check view
from django.conf.urls import url, include

urlpatterns = [
  # other urls...
  url(r'^admin/statuscheck/', include('celerybeat_status.urls', namespce='celerybeat_status')),
]

Usage

Check your tasks under /admin/statuscheck/periodic-tasks/ (if you configured your urls the way we suggested in this docs).

You can also find a link in /admin sidebar.

How you admin page will look like:

admin-page

How your tasks will be shown:

tasks-page

Commercial Support

This project, as other Vinta open-source projects, is used in products of Vinta clients. We are always looking for exciting work, so if you need any commercial support, feel free to get in touch: contact@vinta.com.br

Copyright (c) 2017 Vinta Serviços e Soluções Tecnológicas Ltda

About

A library that integrates with django admin and shows in a simple GUI when your periodic are going to run next.

https://pypi.org/project/django-celerybeat-status

License:MIT License


Languages

Language:Python 80.6%Language:HTML 19.4%