NewsBlur/apps/monitor/views/newsblur_errors.py
2024-04-24 09:43:56 -04:00

24 lines
704 B
Python
Executable file

from django.shortcuts import render
from django.views import View
from apps.statistics.models import MStatistics
class Errors(View):
def get(self, request):
statistics = MStatistics.all()
data = {
"feed_success": statistics["feeds_fetched"],
}
chart_name = "errors"
chart_type = "counter"
formatted_data = {}
for k, v in data.items():
formatted_data[k] = f"feed_success {v}"
context = {
"data": formatted_data,
"chart_name": chart_name,
"chart_type": chart_type,
}
return render(request, "monitor/prometheus_data.html", context, content_type="text/plain")