{% extends "base.html" %} {% block title %}Runs{% endblock %} {% block content %}
| Run ID | Function | Started | Duration | Spans | Status | |
|---|---|---|---|---|---|---|
| {{ run.id[:8] }}… | {{ run.name }} | {{ run.started_at.strftime('%H:%M:%S') }} | {{ run.duration_ms }}ms | {{ run.span_count }} | {% if run.status == 'ok' %} ok {% elif run.status == 'error' %} error {% else %} running {% endif %} |
No traces yet. Add @trace to any function and run it — your first trace will appear here automatically.
from glasspipe import trace
@trace
def my_agent(question):
return "your answer here"
my_agent("hello")
Then run: glasspipe dashboard