diff options
author | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-09-14 16:42:32 +0200 |
---|---|---|
committer | jeroenpraat <jeroenpraat@xs4all.nl> | 2015-09-14 16:42:32 +0200 |
commit | e58ad35fb020fe8ab3599487129c27b3db123052 (patch) | |
tree | 119a13e0bc6f05768fd0cf95e7ed3fb88c9ca309 | |
parent | ec1d6d537ef36f0fb0b783edb39ccbbc27ff0e5f (diff) | |
download | volse-hubzilla-e58ad35fb020fe8ab3599487129c27b3db123052.tar.gz volse-hubzilla-e58ad35fb020fe8ab3599487129c27b3db123052.tar.bz2 volse-hubzilla-e58ad35fb020fe8ab3599487129c27b3db123052.zip |
Update siteinfo.php
-rw-r--r-- | mod/siteinfo.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/mod/siteinfo.php b/mod/siteinfo.php index 8281a7a0a..14aaef144 100644 --- a/mod/siteinfo.php +++ b/mod/siteinfo.php @@ -150,6 +150,9 @@ function siteinfo_content(&$a) { if(file_exists('doc/site_donate.html')) $donate .= file_get_contents('doc/site_donate.html'); + if(function_exists('sys_getloadavg')) + $loadavg = sys_getloadavg(); + $o = replace_macros(get_markup_template('siteinfo.tpl'), array( '$title' => t('$Projectname'), '$description' => t('This is a hub of $Projectname - a global cooperative network of decentralized privacy enhanced websites.'), @@ -158,6 +161,8 @@ function siteinfo_content(&$a) { '$tag' => $tag, '$polled' => t('Last background fetch: '), '$lastpoll' => get_poller_runtime(), + '$load_average' => t('Current load average: '), + '$loadavg_all' => $loadavg[0] . ', ' . $loadavg[1] . ', ' . $loadavg[2], '$commit' => $commit, '$web_location' => t('Running at web location') . ' ' . z_root(), '$visit' => t('Please visit <a href="https://redmatrix.me">redmatrix.me</a> to learn more about $Projectname.'), |