1
0
mirror of https://gitee.com/koogua/course-tencent-cloud.git synced 2025-06-19 18:43:04 +08:00
course-tencent-cloud/app/Console/Tasks/ServerMonitorTask.php
xiaochong0302 0f38ce7d62 1.优化搜索索引
2.优化服务状态监控
3.优化ChapterUserTrait
2024-12-13 08:37:31 +08:00

246 lines
5.5 KiB
PHP

<?php
/**
* @copyright Copyright (c) 2021 深圳市酷瓜软件有限公司
* @license https://opensource.org/licenses/GPL-2.0
* @link https://www.koogua.com
*/
namespace App\Console\Tasks;
use App\Library\Benchmark;
use App\Models\User as UserModel;
use App\Services\Logic\Notice\External\DingTalk\ServerMonitor as ServerMonitorNotice;
use App\Services\Search\CourseSearcher;
use GatewayClient\Gateway;
class ServerMonitorTask extends Task
{
public function mainAction()
{
$robot = $this->getSettings('dingtalk.robot');
if ($robot['enabled'] == 0) return;
$items = [
'cpu' => $this->checkCpu(),
'memory' => $this->checkMemory(),
'disk' => $this->checkDisk(),
'mysql' => $this->checkMysql(),
'redis' => $this->checkRedis(),
'xunsearch' => $this->checkXunsearch(),
'websocket' => $this->checkWebsocket(),
];
foreach ($items as $key => $value) {
if (empty($value)) {
unset($items[$key]);
}
}
if (empty($items)) return;
$content = implode("\n", $items);
$notice = new ServerMonitorNotice();
$notice->createTask($content);
}
protected function checkCpu()
{
$cpuCount = $this->getCpuCount();
$load = sys_getloadavg();
$limit = $this->getConfig()->path('server_monitor.cpu', 0.8);
if ($load[1] > $cpuCount * $limit) {
return sprintf("cpu负载超过%s", $load[1]);
}
return null;
}
protected function checkMemory()
{
$memInfo = file_get_contents('/proc/meminfo');
$total = null;
if (preg_match('/MemTotal:\s+(\d+) kB/', $memInfo, $totalMatches)) {
$total = $totalMatches[1];
}
if ($total === null) return null;
$available = null;
if (preg_match('/MemAvailable:\s+(\d+) kB/', $memInfo, $avaMatches)) {
$available = $avaMatches[1];
}
if ($available === null) return null;
$left = 100 * ($available / $total);
$limit = $this->getConfig()->path('server_monitor.memory', 10);
if ($left < $limit) {
return sprintf("memory剩余不足%s%%", round($left));
}
return null;
}
protected function checkDisk()
{
$free = disk_free_space('/');
$total = disk_total_space('/');
$left = 100 * $free / $total;
$limit = $this->getConfig()->path('server_monitor.disk', 20);
if ($left < $limit) {
return sprintf("disk剩余不足%s%%", round($left));
}
return null;
}
protected function checkMysql()
{
try {
$benchmark = new Benchmark();
$benchmark->start();
$user = UserModel::findFirst();
$benchmark->stop();
$elapsedTime = $benchmark->getElapsedTime();
if (!$user) {
return "mysql查询失败";
}
if ($elapsedTime > 1) {
return sprintf("mysql查询响应超过%s秒", round($elapsedTime, 2));
}
} catch (\Exception $e) {
return "mysql可能存在异常";
}
return null;
}
protected function checkRedis()
{
try {
$benchmark = new Benchmark();
$benchmark->start();
$site = $this->getSettings('site');
$benchmark->stop();
$elapsedTime = $benchmark->getElapsedTime();
if (empty($site)) {
return "redis查询失败";
}
if ($elapsedTime > 1) {
return sprintf("redis查询响应超过%s秒", round($elapsedTime, 2));
}
} catch (\Exception $e) {
return "redis可能存在异常";
}
return null;
}
protected function checkXunsearch()
{
try {
$benchmark = new Benchmark();
$benchmark->start();
$searcher = new CourseSearcher();
$course = $searcher->search('id:1');
$benchmark->stop();
$elapsedTime = $benchmark->getElapsedTime();
if (empty($course)) {
return "xunsearch搜索失败";
}
if ($elapsedTime > 1) {
return sprintf("xunsearch搜索响应超过%s秒", round($elapsedTime, 2));
}
} catch (\Exception $e) {
return "xunsearch可能存在异常";
}
return null;
}
protected function checkWebsocket()
{
try {
$benchmark = new Benchmark();
$config = $this->getConfig();
Gateway::$registerAddress = $config->path('websocket.register_address');
$benchmark->start();
Gateway::isUidOnline(10000);
$benchmark->stop();
$elapsedTime = $benchmark->getElapsedTime();
if ($elapsedTime > 1) {
return sprintf("websocket响应超过%s秒", round($elapsedTime, 2));
}
} catch (\Exception $e) {
return "websocket可能存在异常";
}
return null;
}
protected function getCpuCount()
{
$cpuInfo = file_get_contents('/proc/cpuinfo');
preg_match("/^cpu cores\s:\s(\d+)/m", $cpuInfo, $matches);
$coreCount = intval($matches[1]);
preg_match_all("/^processor/m", $cpuInfo, $matches);
$processorCount = count($matches[0]);
return $coreCount * $processorCount;
}
}