Marius Cramer
2015-08-06 37b29231e47a0c4458dc1c15d98588f16f07e1e2
commit | author | age
5de2af 1 <?php
M 2
3 /*
4 Copyright (c) 2013, Marius Cramer, pixcept KG
5 All rights reserved.
6
7 Redistribution and use in source and binary forms, with or without modification,
8 are permitted provided that the following conditions are met:
9
10     * Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12     * Redistributions in binary form must reproduce the above copyright notice,
13       this list of conditions and the following disclaimer in the documentation
14       and/or other materials provided with the distribution.
15     * Neither the name of ISPConfig nor the names of its contributors
16       may be used to endorse or promote products derived from this software without
17       specific prior written permission.
18
19 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
20 ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
22 IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
23 INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
24 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
25 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
26 OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
28 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29 */
30
31 class cronjob_monitor_disk_usage extends cronjob {
b1a6a5 32
MC 33     // job schedule
34     protected $_schedule = '*/5 * * * *';
35     protected $_run_at_new = true;
36
37     private $_tools = null;
38
39     /* this function is optional if it contains no custom code */
40     public function onPrepare() {
41         global $app;
42
43         parent::onPrepare();
44     }
45
46     /* this function is optional if it contains no custom code */
47     public function onBeforeRun() {
48         global $app;
49
50         return parent::onBeforeRun();
51     }
52
53     public function onRunJob() {
54         global $app, $conf;
55
56         /* used for all monitor cronjobs */
57         $app->load('monitor_tools');
58         $this->_tools = new monitor_tools();
59         /* end global section for monitor cronjobs */
60
5de2af 61         /* the id of the server as int */
M 62         $server_id = intval($conf['server_id']);
63
64         /** The type of the data */
b1a6a5 65
MC 66
5de2af 67         $type = 'disk_usage';
M 68
69         /** The state of the disk-usage */
70         $state = 'ok';
71
72         /** Fetch the data of ALL devices into a array (needed for monitoring!) */
73         //$dfData = shell_exec('df -hT 2>/dev/null');
74         $app->uses('getconf');
b1a6a5 75         $web_config = $app->getconf->get_server_config($conf['server_id'], 'web');
05481a 76         
MC 77         $dfData = shell_exec('df -hT -x simfs | awk \'!x[$1]++\' 2>/dev/null');
78         
5de2af 79         // split into array
M 80         $df = explode("\n", $dfData);
81
82         /*
83          * ignore the first line, process the rest
84          */
85         for ($i = 1; $i <= sizeof($df); $i++) {
86             if ($df[$i] != '') {
87                 /*
88                  * Make an array of the data
89                  */
90                 $s = preg_split('/[\s]+/', $df[$i]);
91                 $data[$i]['fs'] = $s[0];
92                 $data[$i]['type'] = $s[1];
93                 $data[$i]['size'] = $s[2];
94                 $data[$i]['used'] = $s[3];
95                 $data[$i]['available'] = $s[4];
96                 $data[$i]['percent'] = $s[5];
97                 $data[$i]['mounted'] = $s[6];
98                 /*
99                  * calculate the state
100                  */
101                 $usePercent = floatval($data[$i]['percent']);
102
103                 //* get the free memsize
b1a6a5 104                 if(substr($data[$i]['available'], -1) == 'G') {
5de2af 105                     $freesize = floatval($data[$i]['available'])*1024;
b1a6a5 106                 } elseif(substr($data[$i]['available'], -1) == 'T') {
5de2af 107                     $freesize = floatval($data[$i]['available'])*1024*1024;
M 108                 } else {
109                     $freesize = floatval($data[$i]['available']);
110                 }
111
112                 //* We don't want to check some filesystem which have no sensible filling levels
113                 switch ($data[$i]['type']) {
b1a6a5 114                 case 'iso9660':
MC 115                 case 'cramfs':
116                 case 'udf':
117                 case 'tmpfs':
118                 case 'devtmpfs':
119                 case 'udev':
120                     break;
121                 default:
122                     if ($usePercent > 75 && $freesize < 2000)
123                         $state = $this->_tools->_setState($state, 'info');
124                     if ($usePercent > 80 && $freesize < 1000)
125                         $state = $this->_tools->_setState($state, 'warning');
126                     if ($usePercent > 90 && $freesize < 500)
127                         $state = $this->_tools->_setState($state, 'critical');
128                     if ($usePercent > 95 && $freesize < 100)
129                         $state = $this->_tools->_setState($state, 'error');
130                     break;
5de2af 131                 }
M 132             }
133         }
134
135         $res = array();
136         $res['server_id'] = $server_id;
137         $res['type'] = $type;
138         $res['data'] = $data;
139         $res['state'] = $state;
140
141         /*
142          * Insert the data into the database
143          */
144         $sql = 'REPLACE INTO monitor_data (server_id, type, created, data, state) ' .
cc7a82 145             'VALUES (?, ?, UNIX_TIMESTAMP(), ?, ?)';
MC 146         $app->dbmaster->query($sql, $res['server_id'], $res['type'], serialize($res['data']), $res['state']);
5de2af 147
M 148         /* The new data is written, now we can delete the old one */
149         $this->_tools->delOldRecords($res['type'], $res['server_id']);
b1a6a5 150
MC 151         parent::onRunJob();
152     }
153
154     /* this function is optional if it contains no custom code */
155     public function onAfterRun() {
156         global $app;
157
158         parent::onAfterRun();
159     }
5de2af 160
M 161 }
162
163 ?>