More housekeeping

This commit is contained in:
Pinga 2025-02-12 18:34:38 +02:00
parent 715ba7819d
commit de261bdc87
5 changed files with 36 additions and 16 deletions

View file

@ -128,7 +128,7 @@ class ReportsController extends Controller
return "Log file not found: $logFile";
};
// Check statuses
$eppStatus = $checkServiceStatus('epp');
$whoisStatus = $checkServiceStatus('whois');
@ -136,6 +136,7 @@ class ReportsController extends Controller
$dasStatus = $checkServiceStatus('das');
$msgbStatus = $checkServiceStatus('msg_producer');
$msgwStatus = $checkServiceStatus('msg_worker');
$redisStatus = $checkServiceStatus('redis');
// Get log lines as strings
$eppLogs = $getLogLines('epp');
@ -213,6 +214,7 @@ class ReportsController extends Controller
'msgwStatus' => $msgwStatus,
'msgbLogs' => $msgbLogs,
'msgwLogs' => $msgwLogs,
'redisStatus' => $redisStatus
]);
}