{% extends "base.html" %} {% block title %}{{ project.project_key }} metrics · watchmen{% endblock %} {% block content %}
| {{ t.tool }} |
{% if t.errors %}
{% endif %}
|
{{ "{:,}".format(t.count) }} {% if t.errors %}{{ t.errors }} err{% endif %} |
| Date | Sessions | Prompts | Errors | Input tok | Output tok | Cost | Suggestions | Uptake |
|---|---|---|---|---|---|---|---|---|
| {{ r.date }} | {{ r.sessions or "" }} | {{ r.prompts or "" }} | {{ r.tool_errors or "" }} | {{ "{:,}".format(r.input_tokens) if r.input_tokens else "" }} | {{ "{:,}".format(r.output_tokens) if r.output_tokens else "" }} | {{ "${:.2f}".format(r.cost_usd) if r.cost_usd > 0 else "" }} | {{ r.suggestions_fired or "" }} | {% if r.suggestions_fired %}{{ r.uptake }}/{{ r.suggestions_fired }}{% endif %} |