mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
31 lines
838 B
Python
Executable file
31 lines
838 B
Python
Executable file
#!/srv/newsblur/venv/newsblur3/bin/python
|
|
from utils.munin.base import MuninGraph
|
|
import os
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "newsblur_web.settings"
|
|
import django
|
|
django.setup()
|
|
|
|
|
|
class NBMuninGraph(MuninGraph):
|
|
|
|
@property
|
|
def graph_config(self):
|
|
return {
|
|
'graph_category' : 'NewsBlur',
|
|
'graph_title' : 'NewsBlur Stories',
|
|
'graph_vlabel' : 'Stories',
|
|
'graph_args' : '-l 0',
|
|
'stories.label': 'Stories',
|
|
'starred_stories.label': 'Starred stories',
|
|
}
|
|
|
|
def calculate_metrics(self):
|
|
from apps.rss_feeds.models import MStory, MStarredStory
|
|
|
|
return {
|
|
'stories': MStory.objects.count(),
|
|
'starred_stories': MStarredStory.objects.count(),
|
|
}
|
|
|
|
if __name__ == '__main__':
|
|
NBMuninGraph().run()
|