Skip to content

Monitoring


Built-in Metrics

Operations Dashboard

Navigate to Operations in the sidebar for live operational KPIs:

  • Tracked Metrics — count of analytics records
  • SLA Breaches — workflows that exceeded their SLA window
  • Workers Online — registered background worker nodes
  • Stream Events — published platform events

Audit Log

Every significant action writes to metadata_event. Query recent events:

sqlite3 ~/.local/share/accessibility_mgr/accessibility_manager.db \
  "SELECT event_datetime, job_type, event_type, agent, detail
   FROM metadata_event
   ORDER BY event_datetime DESC LIMIT 50;"

Backup Status

The Admin → Backups tab shows: - Scheduler active / stopped - Number of stored backups - Most-recent backup path and size - Full backup log (trigger, status, size, timestamp)


Application Logs

APM logs to stderr. Redirect to a file when running as a service:

uv run AccessMan >> /var/log/accessibility-mgr.log 2>&1

Or via systemd journald:

journalctl -u accessibility-mgr -f