{% extends "base.html" %} {% set active_nav = "costs" %} {% block title %}Costs - Distill{% endblock %} {% block content %}

Costs

Total spend: ${{ "%.2f"|format(total_spend) }}

{% if topic_rollups %}

By Topic (30d)

{% for topic_name, cost, runs in topic_rollups %} {% endfor %}
TopicCostRuns
{{ topic_name }} ${{ "%.2f"|format(cost) }} {{ runs }}
{% endif %} {% if source_rollups %}

By Source (30d)

{% for source, cost, runs in source_rollups %} {% endfor %}
SourceCostRuns
{{ source }} ${{ "%.2f"|format(cost) }} {{ runs }}
{% endif %}

Recent Runs

{% for entry in entries %} {% set meta = entry.get('metadata', {}) or {} %} {% else %} {% endfor %}
WhenCommandTopicCostTimeVideos
{{ entry.get('timestamp', '')|format_timestamp }} {{ entry.get('command', 'unknown') }} {% if meta.get('topic') %}{{ meta.topic }}{% else %}-{% endif %} ${{ "%.2f"|format(entry.get('actual_cost', 0)|float) }} {{ "%.1f"|format(entry.get('elapsed_seconds', 0)|float) }}s {{ meta.get('videos_processed', '-') }}
No runs logged yet
{% endblock %}