Skip to content
Snippets Groups Projects
Commit 55c935c0 authored by Till Brehm's avatar Till Brehm
Browse files

Merge branch 'CronDeprecatedWarnings_Clamav_Mem' into 'develop'

Fixes PHP warnings in monitor for mem and clamav

See merge request !1810
parents c2945688 e5a9f19e
No related branches found
No related tags found
No related merge requests found
...@@ -104,24 +104,26 @@ class cronjob_monitor_clamav_log extends cronjob { ...@@ -104,24 +104,26 @@ class cronjob_monitor_clamav_log extends cronjob {
$tmp = explode("\n", $data); $tmp = explode("\n", $data);
$lastLog = array(); $lastLog = array();
if ($tmp[sizeof($tmp) - 1] == '') { if (count($tmp) >= 2) {
/* the log ends with an empty line remove this */ if ($tmp[sizeof($tmp) - 1] == '') {
array_pop($tmp); /* the log ends with an empty line remove this */
} array_pop($tmp);
if (strpos($tmp[sizeof($tmp) - 1], '-------------') !== false) { }
/* the log ends with "-----..." remove this */ if (strpos($tmp[sizeof($tmp) - 1], '-------------') !== false) {
array_pop($tmp); /* the log ends with "-----..." remove this */
} array_pop($tmp);
for ($i = sizeof($tmp) - 1; $i > 0; $i--) { }
if (strpos($tmp[$i], '---------') === false) { for ($i = sizeof($tmp) - 1; $i > 0; $i--) {
/* no delimiter found, so add this to the last-log */ if (strpos($tmp[$i], '---------') === false) {
$lastLog[] = $tmp[$i]; /* no delimiter found, so add this to the last-log */
} else { $lastLog[] = $tmp[$i];
/* delimiter found, so there is no more line left! */ } else {
break; /* delimiter found, so there is no more line left! */
break;
}
} }
} }
/* /*
* Now we have the last log in the array. * Now we have the last log in the array.
* Check if the outdated-string is found... * Check if the outdated-string is found...
......
...@@ -28,6 +28,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, ...@@ -28,6 +28,7 @@ NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/ */
class cronjob_monitor_mem_usage extends cronjob { class cronjob_monitor_mem_usage extends cronjob {
// job schedule // job schedule
...@@ -74,13 +75,15 @@ class cronjob_monitor_mem_usage extends cronjob { ...@@ -74,13 +75,15 @@ class cronjob_monitor_mem_usage extends cronjob {
$memInfo = explode("\n", $miData); $memInfo = explode("\n", $miData);
foreach ($memInfo as $line) { foreach ($memInfo as $line) {
$part = preg_split('/:/', $line); if (strlen($line) >= 1){
$key = trim($part[0]); $part = preg_split('/:/', $line);
$tmp = explode(' ', trim($part[1])); $key = trim($part[0]);
$value = 0; $tmp = explode(' ', trim($part[1]));
if (isset($tmp[1]) && $tmp[1] == 'kB') $value = 0;
$value = $tmp[0] * 1024; if (isset($tmp[1]) && $tmp[1] == 'kB')
$data[$key] = $value; $value = $tmp[0] * 1024;
$data[$key] = $value;
}
} }
/* /*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment