{% extends "base.html" %} {% block title %}Workspaces — Cairn Dashboard{% endblock %} {% block content %}

Workspaces

{% if stores %} {% for s in stores %} {% endfor %}
Workspace Store State Size Last modified Recorded calls Open
{% if s.path %}{{ s.path }}{% else %}— (unregistered){% endif %} {{ s.key }} {{ s.state }} {{ (s.size_bytes | filesize) if s.size_bytes is not none else "—" }} {{ (s.last_modified | epoch) if s.last_modified is not none else "—" }} {{ s.call_count if s.call_count is not none else "—" }} Open
{% if stores | selectattr("counts_capped") | list %}

counts unavailable for some stores (probe cap)

{% endif %} {% else %}

No cairn stores found — run cairn init in a workspace to register one.

{% endif %}
{% endblock %}