vogelor
2011-03-26 fd5e71e74ceb5e1f3c45002168722c6069340f40
fixed a wrong named variable
1 files modified
48 ■■■■ changed files
server/mods-available/monitor_core_module.inc.php 48 ●●●● patch | view | raw | blame | history
server/mods-available/monitor_core_module.inc.php
@@ -136,7 +136,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorServer() {
@@ -161,7 +161,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorOsVer() {
@@ -186,7 +186,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorIspcVer() {
@@ -211,7 +211,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorDiskUsage() {
@@ -236,7 +236,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMemUsage() {
@@ -260,7 +260,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorCpu() {
@@ -284,7 +284,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorServices() {
@@ -309,7 +309,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorOpenVzHost() {
@@ -334,7 +334,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorOpenVzUserBeancounter() {
@@ -359,7 +359,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorSystemUpdate() {
@@ -394,7 +394,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMailQueue() {
@@ -419,7 +419,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorRaid() {
@@ -444,7 +444,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorRkHunter() {
@@ -479,7 +479,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorFail2ban() {
@@ -504,7 +504,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorSysLog() {
@@ -529,7 +529,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMailLog() {
@@ -554,7 +554,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMailWarnLog() {
@@ -579,7 +579,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMailErrLog() {
@@ -604,7 +604,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorMessagesLog() {
@@ -629,7 +629,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorISPCCronLog() {
@@ -654,7 +654,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorFreshClamLog() {
@@ -679,7 +679,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorClamAvLog() {
@@ -704,7 +704,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    private function _monitorIspConfigLog() {
@@ -729,7 +729,7 @@
        $app->dbmaster->query($sql);
        /* The new data is written, now we can delete the old one */
        $this->_delOldRecords($type, $res['server_id']);
        $this->_delOldRecords($res['type'], $res['server_id']);
    }
    /**