Typo on munin feed exception count.

This commit is contained in:
Samuel Clay 2010-08-25 21:06:41 -04:00
parent 1d077bb325
commit cf8cfaba75

View file

@ -17,7 +17,7 @@ graph_config = {
metrics = {
'feeds': Feed.objects.count(),
'subscriptions': UserSubscription.objects.count(),
'exception_feeds': Feed.objects.count(has_exception=True).count(),
'exception_feeds': Feed.objects.filter(has_exception=True).count(),
'update_queue': Feed.objects.filter(next_scheduled_update__lte=datetime.datetime.now()).count(),
}