mirror of
https://github.com/viq/NewsBlur.git
synced 2025-04-13 09:38:09 +00:00
22 lines
789 B
Python
Executable file
22 lines
789 B
Python
Executable file
import redis
|
|
|
|
from django.http import JsonResponse
|
|
from django.conf import settings
|
|
from django.views import View
|
|
|
|
class Updates(View):
|
|
|
|
def get(self, request):
|
|
r = redis.Redis(connection_pool=settings.REDIS_FEED_UPDATE_POOL)
|
|
|
|
return JsonResponse({
|
|
'update_queue': r.scard("queued_feeds"),
|
|
'feeds_fetched': r.zcard("fetched_feeds_last_hour"),
|
|
'tasked_feeds': r.zcard("tasked_feeds"),
|
|
'error_feeds': r.zcard("error_feeds"),
|
|
'celery_update_feeds': r.llen("update_feeds"),
|
|
'celery_new_feeds': r.llen("new_feeds"),
|
|
'celery_push_feeds': r.llen("push_feeds"),
|
|
'celery_work_queue': r.llen("work_queue"),
|
|
'celery_search_queue': r.llen("search_indexer"),
|
|
})
|