{% extends "base.html" %} {% block title %}Pending — FSD Disengagement Studio{% endblock %} {% block content %} {% if autosave_stats %}
Records queued by fsd-studio listen. Each is a Path B
disengagement detected from the tesla_fleet_telemetry event bus.
They get linked to a saved clip when fsd-studio backfill --pending-log
next runs and finds a matching SEI transition within the
--match-window-seconds window (default 5 min).
| Detected at | Speed | Pre → post state | GPS | Status |
|---|---|---|---|---|
{{ r.timestamp }} |
{{ "%.1f m/s" | format(r.speed_mps or 0) }} |
{% if r.pre_state and r.post_state %}
{{ r.pre_state }} → {{ r.post_state }}
{% else %}
—
{% endif %}
|
{% set lat = r.get('latitude') %} {% set lon = r.get('longitude') %} {% if lat is not none and lon is not none %} {{ "%.4f" | format(lat) }}, {{ "%.4f" | format(lon) }} {% else %} — {% endif %} | {% if r.get('matched_event_id') %} linked {% else %} queued {% endif %} |
No pending records yet. Run fsd-studio listen --ha-url ... --ha-token ...
to populate the queue.