Log files fillup!

We have a variety of servers that run many different applications which log to a file.  This includes IIS, SMTP, FTP, etc.  The list goes on and on.  It is easy to lose track of them all, and even easier to let the log files fill up your drive while your not watching!

We have had to go through and zip up or delete logs to clear up disk space many times.  The full drives have on occasion caused service outages due to not being able to write to the log files.  We have struggled to find an easy/inexpensive way to do this.  It would be easy to write a batch script to delete all the files, but we are under PCI requirements to keep a certain amount of log files on disk for compliance reasons.  Thus the need to zip up the files and delete the originals.

One of our excellent coders at my office came up with this great VB script that will do just this for us.  It will curse through a directory *and all its sub directories* looking for files with the extension ‘.log’ (or whatever extension you want) and mash them all into a single date-stamped zip file.

One thing I need to mention is that this script is looking specifically for log files that have a date stamped file name (this is how it created a date stamped zip), so it will only really work on IIS logs and the like.

Take it for a spin and let me know what you think!

 

[UPDATE: 8/19/2011] I have a new version of this file described in the following post.

One thought on “Log files fillup!”

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.