Adding known good feeds to munin to chart their progress.

This commit is contained in:
Samuel Clay 2012-02-01 22:32:57 -08:00
parent d82fc00306
commit 219dea80f7

View file

@ -20,6 +20,7 @@ def calculate_metrics():
'inactive_feeds': Feed.objects.filter(active=False).count(),
'duplicate_feeds': DuplicateFeed.objects.count(),
'active_feeds': Feed.objects.filter(active_subscribers__gt=0).count(),
'known_good_feeds': Feed.objects.filter(known_good=True).count(),
}
if __name__ == '__main__':