51 lines
1.4 KiB
PHP
51 lines
1.4 KiB
PHP
<?php
|
|
|
|
// get nginx data
|
|
function getNginxStatus() {
|
|
$status = trim(shell_exec('systemctl is-active nginx'));
|
|
return ($status === 'active') ? 'running' : 'not running';
|
|
}
|
|
function getNginxConnections() {
|
|
$connections = shell_exec("netstat -an | grep ':80' | wc -l");
|
|
return intval(trim($connections));
|
|
}
|
|
|
|
|
|
// get prosody data
|
|
function getProsodyStatus() {
|
|
$status = trim(shell_exec('systemctl is-active prosody'));
|
|
return ($status === 'active') ? 'running' : 'not running';
|
|
}
|
|
|
|
|
|
// get jicofo data
|
|
function getJicofoStatus() {
|
|
$status = trim(shell_exec('systemctl is-active jicofo'));
|
|
return ($status === 'active') ? 'running' : 'not running';
|
|
}
|
|
function getJicofoStats($command) {
|
|
$data = shell_exec($command);
|
|
$decodedData = json_decode($data, true);
|
|
if (json_last_error() !== JSON_ERROR_NONE) {
|
|
return ['error' => 'Failed to decode the JSON reply from the service.'];
|
|
}
|
|
return $decodedData;
|
|
}
|
|
|
|
|
|
// get JVB data
|
|
function getJVBStatus() {
|
|
$status = trim(shell_exec('systemctl is-active jitsi-videobridge2'));
|
|
return ($status === 'active') ? 'running' : 'not running';
|
|
}
|
|
function getJVBStats($command) {
|
|
$data = shell_exec($command);
|
|
$decodedData = json_decode($data, true);
|
|
if (json_last_error() !== JSON_ERROR_NONE) {
|
|
return ['error' => 'Failed to decode the JSON reply from the service.'];
|
|
}
|
|
return $decodedData;
|
|
}
|
|
|
|
?>
|