-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCheckServer.class.php
87 lines (68 loc) · 2.25 KB
/
CheckServer.class.php
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<?php
class System
{
protected function exec($command)
{
return exec($command);
}
}
final class CheckServer extends System
{
private $maxLoadAverage = 50;
private $minFreeDisk = 50;
private $result = [];
public function setEmail($email)
{
$this->adminEmail = $email;
}
public function setMinFreeDisk($gb)
{
$this->minFreeDisk = $gb;
}
public function setLoadAverage($load)
{
$this->maxLoadAverage = $load;
}
private function chechApache()
{
return $this->exec('ps -A|grep apache2|wc -l');
}
private function chechNginx()
{
return $this->exec('ps -A|grep nginx|wc -l');
}
private function checkMysql()
{
return $this->exec('ps -A|grep mysql|wc -l');
}
private function checkLoad()
{
return $this->exec("uptime | grep -o 'load average.*' | cut -c 15-18");
}
private function getFreeDisk($disk = '$PWD')
{
return round($this->exec('df ' . $disk . ' | awk \'/[0-9]%/{print $(NF-2)}\'') / 1024 / 1024);
}
public function run()
{
if (!$this->chechApache()) {
$this->result[] = 'При проверке обнаружено, что веб-сервер Apache не был запущен!';
}
if (!$this->chechNginx()) {
$this->result[] = 'При проверке обнаружено, что веб-сервер Nginx не был запущен!';
}
if (!$this->checkMysql()) {
$this->result[] = 'При проверке обнаружено, что MySQL-сервер не был запущен!';
}
if ($this->checkLoad() > $this->maxLoadAverage) {
$this->result[] = "ВНИМАНИЕ!!! Слишком большая нагрузка! {$this->checkLoad()}";
}
if ($this->getFreeDisk() < $this->minFreeDisk) {
$this->result[] = "Свободное место на диске {$this->getFreeDisk()} GB";
}
if ($this->getFreeDisk('/var/lib/mysql') < $this->minFreeDisk) {
$this->result[] = "Свободное место на диске MYSQL {$this->getFreeDisk('/var/lib/mysql')} GB";
}
return $this->result;
}
}