<div dir="ltr">Hi all,<div><br></div><div>In order to reduce the chance of overwriting the important file(s) with some 500 errors, I replaced this script for a new one which keeps records for a whole day. You can find the html files inside /root/apache-status/. Keeping for N days is quite easy with this script but I guess one day is enough. Taking into account that each file is 32K and that we are writing every 10 seconds, then the log total size for one day is 270 MB. The script should delete files older than 1 day.</div><div><br></div><div>Best regards,<br></div><div><br></div><div>Samuel C.</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Feb 18, 2016 at 4:22 AM, Bernie Innocenti <span dir="ltr"><<a href="mailto:bernie@codewiz.org" target="_blank">bernie@codewiz.org</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">On 02/18/2016 02:10 AM, Bernie Innocenti wrote:<br>
> Shall we write a script that dumps the server-status with curl every few<br>
> seconds so we can read the last state next time?<br>
<br>
</span>I have it running in a tmux session:<br>
<br>
while true; do sleep 10; mv apache-status.old apache-status.older; mv<br>
apache-status apache-status.old;  curl -s<br>
'<a href="http://localhost/server-status?auto" rel="noreferrer" target="_blank">http://localhost/server-status?auto</a>' >apache-status; done<br>
<br>
The files are in /root.<br>
<div class="HOEnZb"><div class="h5"><br>
--<br>
 _ // Bernie Innocenti<br>
 \X/  <a href="http://codewiz.org" rel="noreferrer" target="_blank">http://codewiz.org</a><br>
_______________________________________________<br>
Systems mailing list<br>
<a href="mailto:Systems@lists.sugarlabs.org">Systems@lists.sugarlabs.org</a><br>
<a href="http://lists.sugarlabs.org/listinfo/systems" rel="noreferrer" target="_blank">http://lists.sugarlabs.org/listinfo/systems</a><br>
</div></div></blockquote></div><br></div>