2010-06-08 11:19:41 -04:00
|
|
|
#!/usr/bin/env python
|
|
|
|
from utils.munin.base import MuninGraph
|
|
|
|
|
|
|
|
|
2012-09-27 10:45:40 -07:00
|
|
|
class NBMuninGraph(MuninGraph):
|
2011-03-23 15:43:15 -04:00
|
|
|
|
2012-09-27 10:45:40 -07:00
|
|
|
@property
|
|
|
|
def graph_config(self):
|
|
|
|
return {
|
|
|
|
'graph_category' : 'NewsBlur',
|
|
|
|
'graph_title' : 'NewsBlur Stories',
|
|
|
|
'graph_vlabel' : 'Stories',
|
|
|
|
'stories.label': 'stories',
|
|
|
|
'tags.label': 'tags',
|
|
|
|
'authors.label': 'authors',
|
|
|
|
'read_stories.label': 'read_stories',
|
|
|
|
}
|
|
|
|
|
|
|
|
def calculate_metrics(self):
|
|
|
|
from apps.rss_feeds.models import MStory
|
|
|
|
from apps.reader.models import MUserStory
|
|
|
|
|
|
|
|
return {
|
|
|
|
'stories': MStory.objects().count(),
|
|
|
|
'read_stories': MUserStory.objects().count(),
|
|
|
|
}
|
2010-06-08 11:19:41 -04:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-09-27 10:45:40 -07:00
|
|
|
NBMuninGraph().run()
|