From 5b5f325a4eb7d5aeb606b4d6751eb5f35f2a0a53 Mon Sep 17 00:00:00 2001 From: MacRimi Date: Sun, 9 Nov 2025 21:03:00 +0100 Subject: [PATCH] Update health_monitor.py --- AppImage/scripts/health_monitor.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AppImage/scripts/health_monitor.py b/AppImage/scripts/health_monitor.py index 1c281f4..86a7e19 100644 --- a/AppImage/scripts/health_monitor.py +++ b/AppImage/scripts/health_monitor.py @@ -130,7 +130,7 @@ class HealthMonitor: return { 'hostname': hostname, 'uptime_seconds': int(uptime_seconds), - 'uptime_formatted': self._format_uptime(uptime_seconds), + 'uptime': self._format_uptime(uptime_seconds), 'health': health_status, 'timestamp': datetime.now().isoformat() } @@ -138,7 +138,7 @@ class HealthMonitor: return { 'hostname': 'unknown', 'uptime_seconds': 0, - 'uptime_formatted': 'Unknown', + 'uptime': 'Unknown', 'health': {'status': 'UNKNOWN', 'summary': f'Error: {str(e)}'}, 'timestamp': datetime.now().isoformat() }