{% extends 'generic/object_list.html' %} {% load helpers %} {% block title %}Toolkit Statistics{% endblock %} {% block content %}

Command Execution Statistics

{% if total_logs > 0 %}

{{ total_logs }}

Total Executions

{{ success_rate }}%

Success Rate

{{ last_24h.total }}

Last 24h

{{ last_24h.failed }}

Recent Failures

Most Used Commands

{% if top_commands %}
{% for command in top_commands %}
{{ command.command_name }}
{{ command.count }}
{% endfor %}
{% else %}
No command usage data available.
{% endif %}

Common Errors

{% if common_errors %}
{% for error in common_errors %}
{{ error.error|truncatechars:80 }}
{{ error.count }}
{% endfor %}
{% else %}
No recent errors found.
{% endif %}

Recent Activity (Last 24 Hours)

{{ last_24h.successful }}

Successful

{{ last_24h.failed }}

Failed

{{ last_24h.total }}

Total

{% else %}

No Statistics Available

No command executions have been recorded yet. Execute some commands to see statistics here.

{% endif %}
{% endblock %}