{% extends "admin/base.html" %} {% block title %}API Usage Statistics{% endblock %} {% block header_title %}Usage Statistics{% endblock %} {% macro sortable_header(column_key, column_name, text_align_class='text-left') %} {% set next_order = 'asc' if sort_by == column_key and sort_order == 'desc' else 'desc' %} {{ column_name }} {% if sort_by == column_key %} {% if sort_order == 'asc' %} {% else %}{% endif %} {% else %}{% endif %} {% endmacro %} {% block content %}

System Analytics

Download PDF Report

Total Tokens

{{ "{:,}".format(total_tokens|default(0)) }}

Est. Carbon Footprint

{{ "{:,.2f}".format(total_carbon|default(0)) }} gCO₂e

Total Prompt

{{ "{:,}".format(total_prompt_tokens|default(0)) }}

Total Output

{{ "{:,}".format(total_completion_tokens|default(0)) }}

Requests per Day (Last 30 Days)

{% if is_pdf %} {% if static_plots and static_plots.daily %} {% endif %} {% else %} {% if daily_data %}{% else %}
No request data available.
{% endif %} {% endif %}

Peak Hours (UTC)

{% if hourly_data %}{% else %}
No usage data.
{% endif %}

Model Usage (Requests)

{% if not is_pdf %}
{% endif %}
{% if is_pdf %} {% if static_plots and static_plots.models %} {% endif %} {% else %} {% if model_data %}{% else %}
No usage data.
{% endif %} {% endif %}

Detailed Key Usage

{{ sortable_header('username', 'Username') }} {{ sortable_header('key_name', 'Key Name') }} {{ sortable_header('key_prefix', 'Key Prefix') }} {{ sortable_header('request_count', 'Requests', 'text-right') }} {% for stat in key_usage_stats %} {% else %} {% endfor %}
Total Tokens
{{ stat.username }} {{ stat.key_name }} {{ stat.key_prefix }} {{ stat.request_count }} {{ "{:,}".format(stat.total_tokens|default(0)) }}
No usage data found.
{% endblock %}