]> git.mxchange.org Git - friendica.git/blobdiff - src/Core/System.php
Merge branch 'develop' into new_image_presentation
[friendica.git] / src / Core / System.php
index 65f70038801ce017da755a03e82c48b247714570..707649a49d3406cf2f64ee7f943925bd57992cff 100644 (file)
@@ -440,11 +440,12 @@ class System
        /**
         * Fetch the load and number of processes
         *
+        * @param bool $get_processes
         * @return array
         */
-       public static function getLoadAvg(): array
+       public static function getLoadAvg(bool $get_processes = true): array
        {
-               if (@is_readable('/proc/loadavg')) {
+               if ($get_processes && @is_readable('/proc/loadavg')) {
                        $content = @file_get_contents('/proc/loadavg');
                        if (empty($content)) {
                                $content = shell_exec('uptime | sed "s/.*averages*: //" | sed "s/,//g"');