mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Typo on munin feed exception count.
This commit is contained in:
parent
1d077bb325
commit
cf8cfaba75
1 changed files with 1 additions and 1 deletions
|
@ -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(),
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue