{% extends "base.html" %} {% block title %}Telemetry{% endblock %} {% block content %}

Telemetry

From {{ attune_home }}/telemetry/usage.jsonl.

Events
{{ '{:,}'.format(telemetry.total_requests) }}
Total spend
${{ '%.2f'|format(telemetry.total_cost) }}
Reported savings
${{ '%.2f'|format(telemetry.total_savings) }}

By workflow (top 20)

{% if telemetry.by_workflow %} {% for name, count, cost in telemetry.by_workflow %} {% endfor %}
WorkflowEventsCost
{{ name }}{{ count }}${{ '%.4f'|format(cost) }}
{% else %}

No telemetry events yet.

{% endif %}

Last 14 days

{% if telemetry.by_day %} {% for day, count, cost in telemetry.by_day %} {% endfor %}
DayEventsCost
{{ day }}{{ count }}${{ '%.4f'|format(cost) }}
{% else %}

No daily activity in the last 14 days.

{% endif %}
{% if telemetry.last_event_at %}

Last event recorded: {{ telemetry.last_event_at }}

{% endif %} {% endblock %}