]> git.wh0rd.org - tt-rss.git/blobdiff - update_daemon2.php
daemon: show feeds/minute stats
[tt-rss.git] / update_daemon2.php
index 6f493b9b580ceea25a321bd61eea869df9d29a9d..c8534af06c7db56327a099010f28d597440126f3 100755 (executable)
                                        // Call to the feed batch update function
                                        // or regenerate feedbrowser cache
 
+                                       $nf = 0;
+
                                        if (rand(0,100) > 30) {
                                                _debug("Waiting before update..");
                                                sleep(rand(5,15));
-                                               update_daemon_common($link);
+                                               $nf = update_daemon_common($link);
                                        } else {
                                                $count = update_feedbrowser_cache($link);
                                                _debug("Feedbrowser updated, $count feeds processed.");
 
                                        _debug("Elapsed time: " . (time() - $start_timestamp) . " second(s)");
 
+                                       if ($nf > 0) {
+                                               _debug("Feeds processed: $nf; feeds/minute: " . sprintf("%.2d", $nf/((time()-$start_timestamp)/60)));
+                                       }
+
                                        db_close($link);
 
                                        // We are in a fork.