2020-12-03 14:05:32 -05:00
|
|
|
#!/srv/newsblur/venv/newsblur3/bin/python
|
2020-12-10 12:40:12 -05:00
|
|
|
import os
|
2024-04-24 09:43:56 -04:00
|
|
|
|
2024-04-24 09:50:42 -04:00
|
|
|
from utils.munin.base import MuninGraph
|
|
|
|
|
2021-01-12 15:52:10 -05:00
|
|
|
os.environ["DJANGO_SETTINGS_MODULE"] = "newsblur_web.settings"
|
2020-12-10 12:42:12 -05:00
|
|
|
import django
|
2024-04-24 09:43:56 -04:00
|
|
|
|
2020-12-10 12:42:12 -05:00
|
|
|
django.setup()
|
2012-09-27 10:45:40 -07:00
|
|
|
|
|
|
|
|
2024-04-24 09:43:56 -04:00
|
|
|
class NBMuninGraph(MuninGraph):
|
2012-09-27 10:45:40 -07:00
|
|
|
@property
|
|
|
|
def graph_config(self):
|
|
|
|
graph = {
|
2024-04-24 09:43:56 -04:00
|
|
|
"graph_category": "NewsBlur",
|
|
|
|
"graph_title": "NewsBlur Task Pipeline",
|
|
|
|
"graph_vlabel": "Feed fetch pipeline times",
|
|
|
|
"graph_args": "-l 0",
|
|
|
|
"feed_fetch.label": "feed_fetch",
|
|
|
|
"feed_process.label": "feed_process",
|
|
|
|
"page.label": "page",
|
|
|
|
"icon.label": "icon",
|
|
|
|
"total.label": "total",
|
2012-09-27 10:45:40 -07:00
|
|
|
}
|
|
|
|
return graph
|
|
|
|
|
|
|
|
def calculate_metrics(self):
|
|
|
|
return self.stats
|
2024-04-24 09:43:56 -04:00
|
|
|
|
2012-09-27 10:45:40 -07:00
|
|
|
@property
|
|
|
|
def stats(self):
|
|
|
|
import datetime
|
2024-04-24 09:50:42 -04:00
|
|
|
|
2012-09-27 10:45:40 -07:00
|
|
|
from django.conf import settings
|
2024-04-24 09:43:56 -04:00
|
|
|
|
|
|
|
stats = settings.MONGOANALYTICSDB.nbanalytics.feed_fetches.aggregate(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"$match": {
|
|
|
|
"date": {
|
|
|
|
"$gt": datetime.datetime.now() - datetime.timedelta(minutes=5),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"$group": {
|
|
|
|
"_id": 1,
|
|
|
|
"feed_fetch": {"$avg": "$feed_fetch"},
|
|
|
|
"feed_process": {"$avg": "$feed_process"},
|
|
|
|
"page": {"$avg": "$page"},
|
|
|
|
"icon": {"$avg": "$icon"},
|
|
|
|
"total": {"$avg": "$total"},
|
|
|
|
},
|
2012-09-27 10:45:40 -07:00
|
|
|
},
|
2024-04-24 09:43:56 -04:00
|
|
|
]
|
|
|
|
)
|
|
|
|
|
2016-11-20 13:11:56 -08:00
|
|
|
return list(stats)[0]
|
2012-09-27 10:45:40 -07:00
|
|
|
|
2024-04-24 09:43:56 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2012-09-27 10:45:40 -07:00
|
|
|
NBMuninGraph().run()
|