Skip to content

Commit

Permalink
export RQ status as prometheus metrics
Browse files Browse the repository at this point in the history
fixes: rq#503
  • Loading branch information
terencehonles committed Aug 16, 2024
1 parent 87dd8cf commit 1801c18
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 1 deletion.
27 changes: 27 additions & 0 deletions django_rq/apps.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,33 @@
from django.apps import AppConfig

from .queues import filter_connection_params, get_connection, get_queue_class, get_unique_connection_configs
from .workers import get_worker_class

try:
import prometheus_client

from rq_exporter.collector import RQCollector
except ImportError:
RQCollector = None


class DjangoRqAdminConfig(AppConfig):
default_auto_field = "django.db.models.AutoField"
name = "django_rq"

def ready(self):
if RQCollector is None:
return

from .settings import QUEUES

worker_class = get_worker_class()
registered = {}
unique_configs = get_unique_connection_configs()
for name, config in QUEUES.items():
index = unique_configs.index(filter_connection_params(config))
queue_class = get_queue_class(config)
key = index, queue_class
if key not in registered:
registered[key] = True
prometheus_client.REGISTRY.register(RQCollector(get_connection(name), worker_class, queue_class))
10 changes: 10 additions & 0 deletions django_rq/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,19 @@

from . import views

try:
import rq_exporter

metrics_view = [
re_path(r'^metrics/?$', views.prometheus_metrics, name='rq_metrics'),
]
except ImportError:
metrics_view = []

urlpatterns = [
re_path(r'^$', views.stats, name='rq_home'),
re_path(r'^stats.json/(?P<token>[\w]+)?/?$', views.stats_json, name='rq_home_json'),
*metrics_view,
re_path(r'^queues/(?P<queue_index>[\d]+)/$', views.jobs, name='rq_jobs'),
re_path(r'^workers/(?P<queue_index>[\d]+)/$', views.workers, name='rq_workers'),
re_path(r'^workers/(?P<queue_index>[\d]+)/(?P<key>[-\w\.\:\$]+)/$', views.worker_details, name='rq_worker_details'),
Expand Down
21 changes: 20 additions & 1 deletion django_rq/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from django.contrib import admin, messages
from django.contrib.admin.views.decorators import staff_member_required
from django.http import Http404, JsonResponse
from django.http import Http404, HttpResponse, JsonResponse
from django.shortcuts import redirect, render
from django.urls import reverse
from django.views.decorators.cache import never_cache
Expand All @@ -27,6 +27,11 @@
from .settings import API_TOKEN, QUEUES_MAP
from .utils import get_jobs, get_scheduler_statistics, get_statistics, stop_jobs

try:
import prometheus_client
except ImportError:
prometheus_client = None


@never_cache
@staff_member_required
Expand All @@ -48,6 +53,20 @@ def stats_json(request, token=None):
)


@never_cache
@staff_member_required
def prometheus_metrics(request):
if not prometheus_client:
raise Http404

registry = prometheus_client.REGISTRY
encoder, content_type = prometheus_client.exposition.choose_encoder(request.META.get('HTTP_ACCEPT', ''))
if 'name[]' in request.GET:
registry = registry.restricted_registry(request.GET.getlist('name[]'))

return HttpResponse(encoder(registry), headers={'Content-Type': content_type})


@never_cache
@staff_member_required
def jobs(request, queue_index):
Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
package_data={'': ['README.rst']},
install_requires=['django>=3.2', 'rq>=1.14', 'redis>=3'],
extras_require={
'prometheus-metrics': ['prometheus_client>=0.4.0', 'rq-exporter'],
'Sentry': ['sentry-sdk>=1.0.0'],
'testing': [],
},
Expand Down

0 comments on commit 1801c18

Please sign in to comment.