{% 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 %}

Dashboard interactions (this session)

In-memory counters since the dashboard process started. Resets on restart; no PII, no disk write.

Pill clicks
{{ '{:,}'.format(interaction_totals.get('pill_clicks', 0)) }}
Recommendation card clicks
{{ '{:,}'.format(interaction_totals.get('rec_card_clicks', 0)) }}
Scope picker changes
{{ '{:,}'.format(interaction_totals.get('scope_picker_changes', 0)) }}
{% if interaction_top.pill_clicks %}

Top pills clicked

{% for name, count in interaction_top.pill_clicks %} {% endfor %}
WorkflowClicks
{{ name }}{{ count }}
{% endif %} {% if interaction_top.rec_card_clicks %}

Recommendation cards by kind

{% for kind, count in interaction_top.rec_card_clicks %} {% endfor %}
KindClicks
{{ kind }}{{ count }}
{% endif %} {% if interaction_top.scope_picker_changes %}

Scope picker changes by workflow

{% for name, count in interaction_top.scope_picker_changes %} {% endfor %}
WorkflowChanges
{{ name }}{{ count }}
{% endif %} {% if not interaction_top.pill_clicks and not interaction_top.rec_card_clicks and not interaction_top.scope_picker_changes %}

No dashboard interactions recorded yet this session.

{% endif %}
{% endblock %}