mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-21 05:45:13 +00:00
62 lines
1.7 KiB
Python
Executable file
62 lines
1.7 KiB
Python
Executable file
#!/srv/newsblur/venv/newsblur3/bin/python
|
|
import os
|
|
|
|
from utils.munin.base import MuninGraph
|
|
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "newsblur_web.settings"
|
|
import django
|
|
|
|
django.setup()
|
|
|
|
|
|
class NBMuninGraph(MuninGraph):
|
|
@property
|
|
def graph_config(self):
|
|
graph = {
|
|
"graph_category": "NewsBlur",
|
|
"graph_title": "NewsBlur Task Server Times",
|
|
"graph_vlabel": "Feed fetch time / server",
|
|
"graph_args": "-l 0",
|
|
}
|
|
|
|
stats = self.stats
|
|
graph.update(dict((("%s.label" % s["_id"].replace("-", ""), s["_id"]) for s in stats)))
|
|
graph.update(dict((("%s.draw" % s["_id"].replace("-", ""), "LINE1") for s in stats)))
|
|
graph["graph_order"] = " ".join(sorted(s["_id"].replace("-", "") for s in stats))
|
|
|
|
return graph
|
|
|
|
def calculate_metrics(self):
|
|
servers = dict((("%s" % s["_id"].replace("-", ""), s["total"]) for s in self.stats))
|
|
|
|
return servers
|
|
|
|
@property
|
|
def stats(self):
|
|
import datetime
|
|
|
|
from django.conf import settings
|
|
|
|
stats = settings.MONGOANALYTICSDB.nbanalytics.feed_fetches.aggregate(
|
|
[
|
|
{
|
|
"$match": {
|
|
"date": {
|
|
"$gt": datetime.datetime.now() - datetime.timedelta(minutes=5),
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"$group": {
|
|
"_id": "$server",
|
|
"total": {"$avg": "$total"},
|
|
},
|
|
},
|
|
]
|
|
)
|
|
|
|
return list(stats)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
NBMuninGraph().run()
|