Files
XC_VM/src/public/Controllers/Admin/RtmpMonitorController.php
T

30 lines
864 B
PHP
Raw Normal View History

<?php
/**
2026-03-07 21:53:45 +03:00
* RtmpMonitorController — мониторинг RTMP.
*
* @package XC_VM_Public_Controllers_Admin
* @author Divarion_D <https://github.com/Divarion-D>
* @copyright 2025-2026 Vateron Media
* @link https://github.com/Vateron-Media/XC_VM
* @license AGPL-3.0 https://www.gnu.org/licenses/agpl-3.0.html
*/
class RtmpMonitorController extends BaseAdminController
{
public function index()
{
$this->requirePermission();
global $rServers;
2026-03-07 21:53:45 +03:00
if (!isset(RequestManager::getAll()['server']) || !isset($rServers[RequestManager::getAll()['server']])) {
RequestManager::update('server', SERVER_ID);
}
2026-03-07 21:53:45 +03:00
$rRTMPInfo = ServerRepository::getRTMPStats(RequestManager::getAll()['server']);
$this->setTitle('RTMP Monitor');
$this->render('rtmp_monitor', compact('rRTMPInfo'));
}
}