{% extends 'django_cfg_ipc/base.html' %} {% load static %} {% block title %}Dashboard{% endblock %} {% block content %}
bar_chart Today

{{ overview_stats.total_requests_today|default:"0" }}

Total Requests

functions Active

{{ overview_stats.active_methods|length|default:"0" }}

Active Methods

timer Average

{{ overview_stats.avg_response_time_ms|default:"0" }}ms

Response Time

check_circle Rate

{{ overview_stats.success_rate|default:"0" }}%

Success Rate

health_and_safety System Status

{% if health.redis_connected %}check_circle{% else %}cancel{% endif %}

Redis

{% if health.redis_connected %}Connected (DB 2){% else %}Disconnected{% endif %}

{% if health.stream_exists %}stream{% else %}stream_off{% endif %}

Request Stream

{% if health.stream_exists %}{{ health.stream_length }} entries{% else %}Not initialized{% endif %}

{% if health.recent_activity %}notifications_active{% else %}notifications_paused{% endif %}

Recent Activity

{% if health.recent_activity %}Active (last 5 min){% else %}No recent activity{% endif %}

Top Method

{% if overview_stats.top_method %} {{ overview_stats.top_method }} {% else %} No data available {% endif %}

{% endblock %} {% block extra_js %} {% load i18n %} {% now "U" as current_timestamp %} {% endblock %}