Skip to content
Snippets Groups Projects
Commit 008c5614 authored by Thom's avatar Thom :tools:
Browse files

Show memory usage in MB's (#3651)

parent 2c62c9d2
No related branches found
No related tags found
1 merge request!1094Show memory usage in MB's (#3651)
......@@ -184,9 +184,10 @@ class tools_monitor {
foreach($data as $key => $value) {
if ($key != '') {
$memory = number_format($value / 1048576);
$html .= '<tr>
<td>' . $key . ':</td>
<td>' . $value . '</td>
<td>' . $memory . 'MB (' . $value . ')</td>
</tr>';
}
}
......
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