topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Wednesday April 24, 2024, 2:22 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Dragon [ switch to compact view ]

Pages: [1]
1
Web Log Filter / Re: Web Log Filter
« on: January 11, 2014, 04:28 PM »
Oh, I bet others have found it useful and just didn't bother to register and post.  You should use WebLogFilter to pull out all the "downloaded WebLogFilter" entries from your last 8 years of logs!    :D

2
Web Log Filter / Re: Web Log Filter
« on: January 11, 2014, 03:42 PM »
I just want to say, even though i don't think anyone else on the planet uses this, that after employing it to analyze data in a 10gb log file, that it is a great tool, and i'd like to thank myself for coding it.  :up:

I'd like to thank you too.  It's very useful to extract out say all the PHP pages visited by a particular IP address so you can follow what they did to cause an error message or bug you're trying to fix.  Here's the little script I used:

//---------------------------------------------------------------------------
@RULE:
@CONDITION: notequal
@FIELD: host
@VAL: 12.34.56.78
@ACTION: discard
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
@RULE:
@CONDITION: contains
@FIELD: url
@VAL: .php
@ACTION: discard
@OPTIONS: not
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
@RULE:
@CONDITION: always
@ACTION: write
@ACTIONVAL: filtered-log.txt
//---------------------------------------------------------------------------

I have a feeling WebLogFilter doesn't get much notice only because there are so many other tools out there to do similar things, and WebLogFilter is Windows only.  I've noticed that it's almost always the first piece of software that comes along to perform a task that gets all the notice and word of mouth recommendations in the long run, even if something better comes along later.  But WebLogFilter is the only tool I've used that runs little scripts (which I find easier to deal with than moving the cursor around a long command line) that are easy to create with a wizard and can be saved.   http://www.weblogexpert.com/purchase.htm is a commercial tool that does something similar for $99 and up, although they also have a free "Lite" version that might be comparable.  I didn't try it as I found WebLogFilter first.  Even so, you obviously put a good amount of time into WebLogFilter and I find it useful, so thanks!

Pages: [1]