Engine & Storage
Persistence mode
{{ dashboard.sync_status.persistence_mode }}
Database URL
{{ dashboard.sync_status.db_url }}
Scheduler engine
{% if dashboard.sync_status.embed_scheduler %}
Embedded
{% else %}
External
{% endif %}
Local DB Inventory
Transactions
{{
"{:,}".format(dashboard.sync_status.stored_transactions)
}}
Categories
{{
"{:,}".format(dashboard.sync_status.stored_categories)
}}
Accounts
{{ "{:,}".format(dashboard.sync_status.stored_accounts)
}}
Tags
{{ "{:,}".format(dashboard.sync_status.stored_tags)
}}
Transactions Workload
Schedule
{% if dashboard.sync_status.transaction_cron %}
{{ dashboard.sync_status.transaction_cron }}
({{ dashboard.sync_status.transaction_timezone or
dashboard.sync_status.schedule_timezone }})
{% else %}
Disabled
{% endif %}
Last Sync
{% if dashboard.sync_status.transaction_last_synced_at or
dashboard.sync_status.last_synced_at %}
{{ (dashboard.sync_status.transaction_last_synced_at or
dashboard.sync_status.last_synced_at) | time_ago }}
{% else %}
Not yet synced
{% endif %}
Next Sync
{% if dashboard.sync_status.transaction_next_sync_at %}
{{
dashboard.sync_status.transaction_next_sync_at.strftime('%b
%d, %H:%M UTC') }}
{% else %}
Unknown
{% endif %}
Metadata Workload
Schedule
{% if dashboard.sync_status.metadata_cron %}
{{ dashboard.sync_status.metadata_cron }}
({{ dashboard.sync_status.metadata_timezone or
dashboard.sync_status.schedule_timezone }})
{% else %}
Disabled
{% endif %}
Last Sync
{% if dashboard.sync_status.metadata_last_synced_at or
dashboard.sync_status.last_synced_at %}
{{ (dashboard.sync_status.metadata_last_synced_at or
dashboard.sync_status.last_synced_at) | time_ago }}
{% else %}
Not yet synced
{% endif %}
Next Sync
{% if dashboard.sync_status.metadata_next_sync_at %}
{{
dashboard.sync_status.metadata_next_sync_at.strftime('%b
%d, %H:%M UTC') }}
{% else %}
Unknown
{% endif %}
{% else %}