{% extends "base.html" %}
{% block title %}Telemetry{% endblock %}
{% block content %}
From No telemetry events yet. No daily activity in the last 14 days.Telemetry
{{ attune_home }}/telemetry/usage.jsonl.By workflow (top 20)
{% if telemetry.by_workflow %}
{% else %}
{% for name, count, cost in telemetry.by_workflow %}
Workflow Events Cost
{% endfor %}
{{ name }}{{ count }} ${{ '%.4f'|format(cost) }} Last 14 days
{% if telemetry.by_day %}
{% else %}
{% for day, count, cost in telemetry.by_day %}
Day Events Cost
{% endfor %}
{{ day }}{{ count }} ${{ '%.4f'|format(cost) }}
In-memory counters since the dashboard process started. Resets on restart; no PII, no disk write.
| Workflow | Clicks |
|---|---|
{{ name }} | {{ count }} |
| Kind | Clicks |
|---|---|
{{ kind }} | {{ count }} |
| Workflow | Changes |
|---|---|
{{ name }} | {{ count }} |
No dashboard interactions recorded yet this session.
{% endif %}