[Buildbot-devel] limiting waterfall status?

Charles Lepple clepple at gmail.com
Wed Feb 27 02:23:36 UTC 2008


On Mon, Feb 25, 2008 at 3:33 PM, john gale <john at smadness.com> wrote:
>
>  On Feb 23, 2008, at 12:10 PM, Matisse Enzer wrote:
>
>  >    cd "$master_dir" && find twistd.log* -mtime +${DAYS_BACK} \
>  >                -exec rm {} \;
>
>
>
>  Are you saying that the buildbot status for the waterfall webpage is
>  directly generated off the ~50 logfiles that I have sitting in my main
>  buildbot master directory ...?

Not sure if this got answered offlist... but no, I am pretty sure that
the waterfall is built from structures in memory, which are loaded
from the status pickle files in the master directory.

I think Matisse included that in the same script, but the other
logfile cleanup command (just prior to the one you cited) just removes
stdio logs that are older than what the waterfall is probably
displaying:

  cd "$master_dir" && \
         find . -mindepth 2 -type f \
                ! -path "*CVS/*" \
                -mtime +${DAYS_BACK} \
                -exec rm {} \;

-- 
- Charles Lepple




More information about the devel mailing list