mcramer
2013-07-09 94b57bdef6c532f042ea17352c3f84b723501392
server/mods-available/monitor_core_module.inc.php
@@ -37,6 +37,8 @@
   var $actions_available = array();
   /** The Tools */
   private $_tools = null;
    //** time the script was called
    private $_run_time = null;
   /**
    * This function is called during ispconfig installation to determine
@@ -53,10 +55,13 @@
   public function onLoad() {
      global $app;
        //* store the running time
        $this->_run_time = time();
      /*
       * Do the monitor every n minutes and write the result to the db
       */
      $min = @date('i');
      $min = @date('i', $this->_run_time);
      if (($min % $this->interval) == 0) {
         $this->_doMonitor();
      }
@@ -122,7 +127,7 @@
        /*
       *  This monitoring is expensive, so do it only every 15 minutes
       */
      $min = @date('i');
      $min = @date('i', $this->_run_time);
      if ($min % 15 != 0) return;
      
      $app->uses('getconf');
@@ -404,7 +409,7 @@
      /*
       *  This monitoring is expensive, so do it only once an hour
       */
      $min = @date('i');
      $min = @date('i', $this->_run_time);
      if ($min != 0)
         return;
@@ -493,8 +498,8 @@
      /*
       *  This monitoring is expensive, so do it only once a day
       */
      $min = @date('i');
      $hour = @date('H');
      $min = @date('i', $this->_run_time);
      $hour = @date('H', $this->_run_time);
      if (!($min == 0 && $hour == 23))
         return;
      /*