AHDX: Apple Health exporter with SQLite + Grafana dashboard (MIT)

This commit is contained in:
Steffen Skui
2026-07-21 21:23:34 +02:00
commit 850c13777c
34 changed files with 5108 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
{% if status %}
<p><strong>State:</strong> {{ status['state'] or 'idle' }}</p>
{% if status['source'] %}<p><strong>Source:</strong> {{ status['source'] }}</p>{% endif %}
<p><strong>Rows read:</strong> {{ status['records_seen'] or 0 }}
&nbsp; <strong>new rows added:</strong> {{ status['records_new'] or 0 }}</p>
{% if status['current_type'] %}<p><strong>Now reading:</strong> {{ status['current_type'] }}</p>{% endif %}
{% if status['message'] %}<p class="err">{{ status['message'] }}</p>{% endif %}
{% if status['finished_at'] %}<p class="muted">Finished {{ status['finished_at'] }} UTC</p>{% endif %}
{% else %}
<p class="muted">Nothing imported yet.</p>
{% endif %}