added router online status, also add monitor and also report to admin when goes offline, report depend on cron runtime
This commit is contained in:
parent
50a3f0a175
commit
76ac9431b3
@ -138,6 +138,8 @@ CREATE TABLE `tbl_routers` (
|
|||||||
`password` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
`password` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL,
|
||||||
`description` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
`description` varchar(256) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci DEFAULT NULL,
|
||||||
`coordinates` VARCHAR(50) NOT NULL DEFAULT '',
|
`coordinates` VARCHAR(50) NOT NULL DEFAULT '',
|
||||||
|
`status` ENUM('Online', 'Offline') DEFAULT 'Online',
|
||||||
|
`last_seen` DATETIME,
|
||||||
`coverage` VARCHAR(8) NOT NULL DEFAULT '0',
|
`coverage` VARCHAR(8) NOT NULL DEFAULT '0',
|
||||||
`enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 disabled'
|
`enabled` tinyint(1) NOT NULL DEFAULT '1' COMMENT '0 disabled'
|
||||||
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;
|
||||||
|
@ -78,3 +78,64 @@ foreach ($d as $ds) {
|
|||||||
echo " : ACTIVE \r\n";
|
echo " : ACTIVE \r\n";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$routers = ORM::for_table('tbl_routers')->find_many();
|
||||||
|
if (!$routers) {
|
||||||
|
echo "No routers found in the database.\n";
|
||||||
|
exit;
|
||||||
|
}
|
||||||
|
|
||||||
|
foreach ($routers as $router) {
|
||||||
|
[$ip, $port] = explode(':', $router->ip_address);
|
||||||
|
$isOnline = false;
|
||||||
|
|
||||||
|
try {
|
||||||
|
$timeout = 5;
|
||||||
|
if (is_callable('fsockopen') && false === stripos(ini_get('disable_functions'), 'fsockopen')) {
|
||||||
|
$fsock = @fsockopen($ip, $port, $errno, $errstr, $timeout);
|
||||||
|
if ($fsock) {
|
||||||
|
fclose($fsock);
|
||||||
|
$isOnline = true;
|
||||||
|
} else {
|
||||||
|
throw new Exception("Unable to connect to $ip on port $port using fsockopen: $errstr ($errno)");
|
||||||
|
}
|
||||||
|
} elseif (is_callable('stream_socket_client') && false === stripos(ini_get('disable_functions'), 'stream_socket_client')) {
|
||||||
|
$connection = @stream_socket_client("$ip:$port", $errno, $errstr, $timeout);
|
||||||
|
if ($connection) {
|
||||||
|
fclose($connection);
|
||||||
|
$isOnline = true;
|
||||||
|
} else {
|
||||||
|
throw new Exception("Unable to connect to $ip on port $port using stream_socket_client: $errstr ($errno)");
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
throw new Exception("Neither fsockopen nor stream_socket_client are enabled on the server.");
|
||||||
|
}
|
||||||
|
} catch (Exception $e) {
|
||||||
|
_log($e->getMessage());
|
||||||
|
$adminEmail = $config['mail_from'];
|
||||||
|
$subject = "Router Monitoring Error Alert";
|
||||||
|
$message = "An error occurred during the monitoring of router $ip: " . (string) $e->getMessage();
|
||||||
|
Message::SendEmail($adminEmail, $subject, $message);
|
||||||
|
sendTelegram($message);
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($isOnline) {
|
||||||
|
$router->last_seen = date('Y-m-d H:i:s');
|
||||||
|
$router->status = 'Online';
|
||||||
|
} else {
|
||||||
|
$router->status = 'Offline';
|
||||||
|
$adminEmail = $config['mail_from'];
|
||||||
|
$subject = "Router Offline Alert";
|
||||||
|
$message = "Dear Administrator,\nThe router with Name: {$router->name} and IP: {$router->ip_address} appears to be offline.\nThe Router was last seen online on: {$router->last_seen}\nPlease check the router's status and take appropriate action.\n\nBest regards,\nRouter Monitoring System";
|
||||||
|
Message::SendEmail($adminEmail, $subject, $message);
|
||||||
|
sendTelegram($message);
|
||||||
|
}
|
||||||
|
|
||||||
|
$router->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
if ($isCli) {
|
||||||
|
echo "Cronjob finished\n";
|
||||||
|
} else {
|
||||||
|
echo "</pre>";
|
||||||
|
}
|
@ -151,5 +151,9 @@
|
|||||||
],
|
],
|
||||||
"2024.8.7" : [
|
"2024.8.7" : [
|
||||||
"ALTER TABLE `tbl_customers` CHANGE `coordinates` `coordinates` VARCHAR(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT 'Latitude and Longitude coordinates';"
|
"ALTER TABLE `tbl_customers` CHANGE `coordinates` `coordinates` VARCHAR(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL DEFAULT '' COMMENT 'Latitude and Longitude coordinates';"
|
||||||
|
],
|
||||||
|
"2024.8.27" : [
|
||||||
|
"ALTER TABLE `tbl_routers` ADD `status` ENUM('Online', 'Offline') DEFAULT 'Online', AFTER `coordinates`;",
|
||||||
|
"ALTER TABLE `tbl_routers` ADD `last_seen` DATETIME AFTER `status`;"
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -40,6 +40,8 @@
|
|||||||
<th>{Lang::T('IP Address')}</th>
|
<th>{Lang::T('IP Address')}</th>
|
||||||
<th>{Lang::T('Username')}</th>
|
<th>{Lang::T('Username')}</th>
|
||||||
<th>{Lang::T('Description')}</th>
|
<th>{Lang::T('Description')}</th>
|
||||||
|
<th>{Lang::T('Online Status')}</th>
|
||||||
|
<th>{Lang::T('Last Seen')}</th>
|
||||||
<th>{Lang::T('Status')}</th>
|
<th>{Lang::T('Status')}</th>
|
||||||
<th>{Lang::T('Manage')}</th>
|
<th>{Lang::T('Manage')}</th>
|
||||||
<th>ID</th>
|
<th>ID</th>
|
||||||
@ -47,17 +49,27 @@
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
{foreach $d as $ds}
|
{foreach $d as $ds}
|
||||||
<tr {if $ds['enabled'] != 1}class="danger" title="disabled" {/if}>
|
<tr {if $ds['enabled'] !=1}class="danger" title="disabled" {/if}>
|
||||||
<td>
|
<td>
|
||||||
{if $ds['coordinates']}
|
{if $ds['coordinates']}
|
||||||
<a href="https://www.google.com/maps/dir//{$ds['coordinates']}/" target="_blank"
|
<a href="https://www.google.com/maps/dir//{$ds['coordinates']}/" target="_blank"
|
||||||
class="btn btn-default btn-xs" title="{$ds['coordinates']}"><i
|
class="btn btn-default btn-xs" title="{$ds['coordinates']}"><i
|
||||||
class="glyphicon glyphicon-map-marker"></i></a>
|
class="glyphicon glyphicon-map-marker"></i></a>
|
||||||
{/if}
|
{/if}
|
||||||
{$ds['name']}</td>
|
{$ds['name']}
|
||||||
<td>{$ds['ip_address']}</td>
|
</td>
|
||||||
<td>{$ds['username']}</td>
|
<td style="background-color: black; color: black;"
|
||||||
|
onmouseleave="this.style.backgroundColor = 'black';"
|
||||||
|
onmouseenter="this.style.backgroundColor = 'white';">{$ds['ip_address']}</td>
|
||||||
|
<td style="background-color: black; color: black;"
|
||||||
|
onmouseleave="this.style.backgroundColor = 'black';"
|
||||||
|
onmouseenter="this.style.backgroundColor = 'white';">{$ds['username']}</td>
|
||||||
<td>{$ds['description']}</td>
|
<td>{$ds['description']}</td>
|
||||||
|
<td><span
|
||||||
|
class="label {if $ds['status'] == 'Online'}label-success {else}label-danger {/if}">{if
|
||||||
|
$ds['status'] == 'Online'}{Lang::T('Online')}{else}{Lang::T('Offline')}{/if}</span>
|
||||||
|
</td>
|
||||||
|
<td>{$ds['last_seen']}</td>
|
||||||
<td>{if $ds['enabled'] == 1}{Lang::T('Enabled')}{else}{Lang::T('Disabled')}{/if}</td>
|
<td>{if $ds['enabled'] == 1}{Lang::T('Enabled')}{else}{Lang::T('Disabled')}{/if}</td>
|
||||||
<td>
|
<td>
|
||||||
<a href="{$_url}routers/edit/{$ds['id']}"
|
<a href="{$_url}routers/edit/{$ds['id']}"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user