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