NewsBlur/utils/munin/newsblur_updates.py

39 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/env python
2012-02-26 23:29:57 -08:00
import redis
from utils.munin.base import MuninGraph
class NBMuninGraph(MuninGraph):
@property
def graph_config(self):
return {
'graph_category' : 'NewsBlur',
'graph_title' : 'NewsBlur Updates',
'graph_vlabel' : '# of updates',
'graph_args' : '-l 0',
'update_queue.label': 'Queued Feeds',
'feeds_fetched.label': 'Fetched feeds last hour',
'celery_update_feeds.label': 'Celery - Update Feeds',
'celery_new_feeds.label': 'Celery - New Feeds',
'celery_push_feeds.label': 'Celery - Push Feeds',
'celery_work_queue.label': 'Celery - Work Queue',
}
2010-09-08 10:52:04 -07:00
def calculate_metrics(self):
from django.conf import settings
r = redis.Redis(connection_pool=settings.REDIS_FEED_POOL)
2012-02-26 23:29:57 -08:00
return {
2013-04-03 16:16:15 -07:00
'update_queue': r.scard("queued_feeds"),
'feeds_fetched': r.zcard("fetched_feeds_last_hour"),
'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"),
}
if __name__ == '__main__':
NBMuninGraph().run()