@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

reduce noise on daemon console

Summary:
this suppresses displaying entries that have not been in the running
state for more than 3 days.

note: We should probably kill off these dead rows similar
to the code at the top of the loop, but without checking to see if we're
the same host and the item is still live, or have some other cruft removal
job to effect the same.

Test Plan: load /daemon/ and rejoice that there are fewer crufty rows.

Reviewers: vrana, nh

Reviewed By: nh

CC: aran, epriestley

Differential Revision: https://secure.phabricator.com/D5299

+9
+9
src/applications/daemon/view/PhabricatorDaemonLogListView.php
··· 66 66 $symbol = '?'; 67 67 } 68 68 69 + if ($status != PhabricatorDaemonLog::STATUS_RUNNING && 70 + $log->getDateModified() + (3 * 86400) < time()) { 71 + // Don't show rows that haven't been running for more than 72 + // three days. We should probably prune these out of the 73 + // DB similar to the code above, but we don't need to be 74 + // conservative and do it only on the same host 75 + continue; 76 + } 77 + 69 78 $running = phutil_tag( 70 79 'span', 71 80 array(