Re: [analog-help] First time user

2004-11-11 Thread Aengus
On Thursday, November 11, 2004 6:14 AM [GMT],
Mike Langensiepen [EMAIL PROTECTED] wrote:

 Has anyone got a logformat for the H-sphere plugin?

 We have tried creating a logformat and all we get is Corrupt Lines: xx

 The logfile appears to have 20 fields:

 #Fields: date time c-ip cs-username s-sitename s-computername s-ip
 s-port cs-method cs-uri-stem cs-uri-query sc-status sc-win32-status
 sc-bytes cs-bytes time-taken cs-version cs(User-Agent) cs(Cookie)
 cs(Referer)

 This is what we think the logformat should be:
 LOGFORMAT (%Y-%m-%d %h:%:%j %s %u %j %j %s %j %j %r %j %j %j %b %b %t
 %j %B %u %j)

It isn't normally necessary to write a LOGFORMAT, because Analog should
be able to read that #Fields: line. If it's not recognizing it, you
should post all of the # lines, so that it can be fixed in the next
version.

You have two %s field in your LOGFORMAT, two %b fields, 2 %u fields and
no %c field. This LOGFORMAT might work better:

LOGFORMAT (%Y-%m-%d %h:%:%j %s %u %j %j %j %j %r %q %c %j %b %j %t %j %B
%j %f)

Aengus

+
|  TO UNSUBSCRIBE from this list:
|http://lists.meer.net/mailman/listinfo/analog-help
|
|  Usenet version: news://news.gmane.org/gmane.comp.web.analog.general
|  List archives:  http://www.analog.cx/docs/mailing.html#listarchives
+


[analog-help] (no subject)

2004-11-11 Thread saritha








HI..in the Request Report, I do not want to display any
image filesfor example this particular line:



87: : 27/Oct/04 23:41:
/404trap.aspx?404;http://www.curenimda.com/default-nothingstars_2_20.gif



I only want to display lines that end with a filename and
not with an image name..i tried using:



FILEEXCLUDE
/~404trap.aspx?404;http://www.curenimda.com/default-nothingstars_2_20.gif/*



but that did not work.



any help out there? :)








+
|  TO UNSUBSCRIBE from this list:
|http://lists.meer.net/mailman/listinfo/analog-help
|
|  Usenet version: news://news.gmane.org/gmane.comp.web.analog.general
|  List archives:  http://www.analog.cx/docs/mailing.html#listarchives
+


Re: [analog-help] (no subject)

2004-11-11 Thread Aengus
On Friday, November 12, 2004 2:37 AM [GMT],
saritha [EMAIL PROTECTED] wrote:

 HI..in the Request Report, I do not want to display any image
 files

Try REQINCLUDE PAGES to only inlcude Pages in the Request Report.

You'll probably want to add PAGEINCLUDE *.aspx (or maybe PAGEINCLUDE
*.asp*) as well.

http://www.analog.cx/docs/include.html#outputexcludes

 for example this particular line:
  87:   : 27/Oct/04 23:41:

/404trap.aspx?404;http://www.curenimda.com/default-nothingstars_2_20.gif

That's a request for a page - 404trap.aspx. The parameters that come
after that just specify which requested page was not found (a 404 error
is a Page Not Found error).

 I only want to display lines that end with a filename and not with
 an image name..i tried using:

 FILEEXCLUDE

/~404trap.aspx?404;http://www.curenimda.com/default-nothingstars_2_20.gi
f/*

 but that did not work.

That doesn't work because that / at the end doesn't match the example
line that you provided, which doesn't have a / at the end. If you want
to exclude the 404 error handler from your request report all together
(not a good idea, I wold have thought) then use
FILEEXCLUDE /~404trap.aspx*

Aengus

+
|  TO UNSUBSCRIBE from this list:
|http://lists.meer.net/mailman/listinfo/analog-help
|
|  Usenet version: news://news.gmane.org/gmane.comp.web.analog.general
|  List archives:  http://www.analog.cx/docs/mailing.html#listarchives
+