piler/webui/controller/health/worker.php

166 lines
6.3 KiB
PHP
Raw Normal View History

2012-02-08 23:14:28 +01:00
<?php
class ControllerHealthWorker extends Controller {
private $error = array();
public function index(){
2013-02-16 12:33:25 +01:00
$archivesizeraw = $sqlsizeraw = $sphinxsizeraw = 0;
$averagemessagesweekraw = $averagemessagesmonthraw = $averagemessagesizeraw = $averagesizedayraw = $averagesqlsizeraw = $averagesphinxsizeraw = 0;
2013-04-30 15:59:04 +02:00
$averagemessagestotalraw = 0;
2012-02-08 23:14:28 +01:00
$this->id = "content";
$this->template = "health/worker.tpl";
$this->layout = "common/layout-empty";
$db_history = Registry::get('db_history');
$this->load->model('health/health');
$this->load->model('stat/counter');
2013-07-24 22:14:05 +02:00
if(ENABLE_SAAS == 1) {
$this->load->model('saas/customer');
}
2012-02-08 23:14:28 +01:00
$request = Registry::get('request');
$lang = Registry::get('language');
$this->data['health'] = array();
if(Registry::get('admin_user') != 1 && Registry::get('readonly_admin') != 1) {
die("go away");
}
2013-04-08 20:46:19 +02:00
ini_set("default_socket_timeout", 5);
2012-02-08 23:14:28 +01:00
foreach (Registry::get('health_smtp_servers') as $smtp) {
2013-08-24 23:47:29 +02:00
if($smtp[0]) {
$this->data['health'][] = $this->model_health_health->checksmtp($smtp, $lang->data['text_error']);
}
2012-02-08 23:14:28 +01:00
}
2013-07-24 22:14:05 +02:00
if(ENABLE_SAAS == 1) {
$this->data['num_of_online_users'] = $this->model_saas_customer->count_online();
}
2012-02-08 23:14:28 +01:00
$this->data['processed_emails'] = $this->model_health_health->count_processed_emails();
list ($this->data['uptime'], $this->data['cpuload']) = $this->model_health_health->uptime();
2015-03-18 15:22:53 +01:00
exec(PILER_BINARY . " -v", $a);
$this->data['piler_version'] = $a[0];
2014-05-02 21:20:39 +02:00
$x = exec(CPU_USAGE_COMMAND);
2014-05-02 14:40:39 +02:00
$this->data['cpuinfo'] = 100 - (int)$x;
2012-02-08 23:14:28 +01:00
$this->data['quarantinereportinfo'] = @file_get_contents(DAILY_QUARANTINE_REPORT_STAT);
list($this->data['totalmem'], $this->data['meminfo'], $this->data['totalswap'], $this->data['swapinfo']) = $this->model_health_health->meminfo();
$this->data['shortdiskinfo'] = $this->model_health_health->diskinfo();
/* counter related stuff */
2012-02-08 23:14:28 +01:00
$db = Registry::get('db');
$db->select_db($db->database);
2014-05-05 16:00:33 +02:00
list($archivesizeraw, $archivestoredsizeraw, $this->data['counters']) = $this->model_stat_counter->get_counters();
2013-04-22 23:03:40 +02:00
$oldest_record_timestamp = $this->model_health_health->get_oldest_record_ts();
2014-04-25 13:42:08 +02:00
$total_number_days = round( (time() - $this->model_health_health->get_first_email_arrival_ts()) / 86400 );
2013-02-16 12:33:25 +01:00
$this->data['archive_size'] = nice_size($archivesizeraw, ' ');
2014-05-05 16:00:33 +02:00
$this->data['archive_stored_size'] = nice_size($archivestoredsizeraw, ' ');
2012-02-10 14:35:07 +01:00
2012-02-08 23:14:28 +01:00
$this->data['prefix'] = '';
2012-02-10 14:35:07 +01:00
if(isset($this->data['counters'][MEMCACHED_PREFIX . 'rcvd'])) { $this->data['prefix'] = MEMCACHED_PREFIX; }
2012-02-08 23:14:28 +01:00
$this->data['sysinfo'] = $this->model_health_health->sysinfo();
2012-04-27 14:39:10 +02:00
$this->data['options'] = $this->model_health_health->get_options();
2013-02-16 12:33:25 +01:00
$sqlsizeraw = $this->model_health_health->get_database_size();
2013-02-16 12:33:25 +01:00
$sphinxsizeraw = $this->model_health_health->get_sphinx_size();
2013-04-30 15:59:04 +02:00
/*
* message count variables
*/
//average messages per day, computed over the past week
2014-12-15 22:20:20 +01:00
$averagemessagesweekraw = ($this->data['processed_emails']['last_7_days_count']) / 7;
2013-04-30 15:59:04 +02:00
//average messages per day, computed over the past month
2014-12-15 22:20:20 +01:00
$averagemessagesmonthraw = ($this->data['processed_emails']['last_30_days_count']) / 30;
2013-04-30 15:59:04 +02:00
//average messages per day, computed over the time period since the first email was archived
2014-05-01 12:20:22 +02:00
if($total_number_days > 0) { $averagemessagestotalraw = $this->data['counters']['rcvd'] / $total_number_days; }
2013-04-30 15:59:04 +02:00
/*
* message size variables
*/
if($this->data['counters']['rcvd'] > 0) {
//average message size, computed for total messages in database
$averagemessagesizeraw = $archivesizeraw / $this->data['counters']['rcvd'];
//average message metadata size, computed for total messages in database
$averagesqlsizeraw = $sqlsizeraw / $this->data['counters']['rcvd'];
//average message sphinx index size, computed for total messages in database
$averagesphinxsizeraw = $sphinxsizeraw / $this->data['counters']['rcvd'];
}
//average total message size per day, computed over the time period since the first email was archived
$averagesizedayraw = ($averagemessagesizeraw + $averagesqlsizeraw + $averagesphinxsizeraw) * $averagemessagestotalraw;
2013-02-16 12:33:25 +01:00
$datapart = 0;
foreach($this->data['shortdiskinfo'] as $part) {
2013-04-22 23:03:40 +02:00
if( $part['partition'] == DATA_PARTITION ) { $datapart = $part['freespace']*1024; } // if the partition is the selected storage partition, record freespace on that partition
2013-02-16 12:33:25 +01:00
}
2013-04-22 23:03:40 +02:00
$this->data['oldestmessagets'] = $oldest_record_timestamp; // date of the oldest record in the db
$this->data['averagemessages'] = round($averagemessagesweekraw); // rounded average of messages over the past week
$this->data['averagemessagesize'] = nice_size($averagemessagesizeraw,' '); // formatted average message size on disk
$this->data['averagesqlsize'] = nice_size($averagesqlsizeraw,' '); // formatted average metadata size in sql
$this->data['averagesphinxsize'] = nice_size($averagesphinxsizeraw,' '); // formatted average sphinx index
$this->data['averagesizeday'] = nice_size($averagesizedayraw,' '); // formatted average size per day
2013-04-30 15:59:04 +02:00
// estimated number of days of free space left
$averagesizedayraw > 0 ? $this->data['daysleftatcurrentrate'] = convert_days_ymd($datapart / $averagesizedayraw) : $this->data['daysleftatcurrentrate'] = 0;
/*
* determine if the trend of the last week compared to the last month is
* increasing, decreasing, or neutral
* (only applies to message count, not size)
*/
if ( $averagemessagesweekraw > $averagemessagesmonthraw ) {
2013-02-16 12:33:25 +01:00
$this->data['usagetrend'] = 1;
} elseif( $averagemessagesweekraw < $averagemessagesmonthraw ) {
$this->data['usagetrend'] = -1;
} else {
$this->data['usagetrend'] = 0;
}
2013-04-30 15:59:04 +02:00
2013-08-09 10:13:54 +02:00
$this->data['indexer_stat'] = $this->model_health_health->indexer_stat();
2013-08-11 09:22:03 +02:00
$this->data['purge_stat'] = $this->model_health_health->purge_stat();
2013-08-09 10:13:54 +02:00
$this->data['sphinx_current_main_size'] = $this->model_health_health->get_current_sphinx_main_index_size();
2013-08-09 10:13:54 +02:00
2012-02-08 23:14:28 +01:00
$this->render();
}
}