{% extends "base.html" %} {% block title %}System - MyFSIO Console{% endblock %} {% block content %}
Administration
Server information, feature flags, and maintenance tools.
Runtime environment and configuration
| Version | {{ app_version }} |
| Storage Root | {{ storage_root }} |
| Platform | {{ platform }} |
| Python | {{ python_version }} |
| Rust Extension | {% if has_rust %} Loaded {% else %} Not loaded {% endif %} |
Features configured via environment variables
| {{ feat.label }} | {% if feat.enabled %} Enabled {% else %} Disabled {% endif %} |
Clean up temporary files, orphaned uploads, and stale locks
| Time | Cleaned | Freed | Mode |
|---|---|---|---|
| {{ exec.timestamp_display }} | {% set r = exec.result %} {{ (r.temp_files_deleted|d(0)) + (r.multipart_uploads_deleted|d(0)) + (r.lock_files_deleted|d(0)) + (r.orphaned_metadata_deleted|d(0)) + (r.orphaned_versions_deleted|d(0)) + (r.empty_dirs_removed|d(0)) }} | {{ exec.bytes_freed_display }} | {% if exec.dry_run %} Dry run {% else %} Live {% endif %} |
No executions recorded yet.
Garbage collection is not enabled.
Set GC_ENABLED=true to enable automatic cleanup.
Detect and heal corrupted objects, orphaned files, and metadata drift
| Time | Scanned | Issues | Healed | Mode |
|---|---|---|---|---|
| {{ exec.timestamp_display }} | {{ exec.result.objects_scanned|d(0) }} | {% set total_issues = (exec.result.corrupted_objects|d(0)) + (exec.result.orphaned_objects|d(0)) + (exec.result.phantom_metadata|d(0)) + (exec.result.stale_versions|d(0)) + (exec.result.etag_cache_inconsistencies|d(0)) + (exec.result.legacy_metadata_drifts|d(0)) %} {% if total_issues > 0 %} {{ total_issues }} {% else %} 0 {% endif %} | {{ exec.result.issues_healed|d(0) }} | {% if exec.dry_run %} Dry {% elif exec.auto_heal %} Heal {% else %} Scan {% endif %} |
No scans recorded yet.
Integrity scanner is not enabled.
Set INTEGRITY_ENABLED=true to enable automatic scanning.