forked from phpmyadmin/phpmyadmin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver_status.php
More file actions
30 lines (24 loc) · 729 Bytes
/
server_status.php
File metadata and controls
30 lines (24 loc) · 729 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* object the server status page: processes, connections and traffic
*
* @package PhpMyAdmin
*/
declare(strict_types=1);
use PhpMyAdmin\Controllers\Server\Status\StatusController;
use PhpMyAdmin\Response;
use PhpMyAdmin\Server\Status\Data;
if (! defined('ROOT_PATH')) {
define('ROOT_PATH', __DIR__ . DIRECTORY_SEPARATOR);
}
require_once ROOT_PATH . 'libraries/common.inc.php';
require_once ROOT_PATH . 'libraries/server_common.inc.php';
require_once ROOT_PATH . 'libraries/replication.inc.php';
$response = Response::getInstance();
$controller = new StatusController(
$response,
$GLOBALS['dbi'],
new Data()
);
$response->addHTML($controller->index());