Re: [analog-help] DNS WRITE but settings says DNS level

2001-03-09 Thread Martin Freedman

First I can now get DNS working by calling analog directly and 
changing analog.cfg directly to vary report output. So the main 
question is solved.

On 8 Mar 2001, at 17:51, Stephen Turner wrote:

 Clearly the DNS WRITE is being ignored. The only ways this can 
happen are if
 the whole config file is being ignored, or if you have a DNS 
command later
Well it is not totally ignoring this because it is responding correctly 
to the HOST directive and also SETTINGS ON directive... checked 
there is only one set of DNS entries and there is...

But I must be missing something with regard to using anlgform.html 
as a test. Any switches it or any page PUTing to anlgform.pl that 
are, say, for DNS or SETTINGS, will be forbidden by anlgform.pl, 
but any name name value pairs in analog.cfg will not be 
filtered/forbidden through anlgform.pl? This is the only way I can 
see how SETTINGS ON and HOSTURL are set since otherwise I 
should never have been able to get SETTINGS ON working when 
called by anlgform.pl (since it is in @forbidden()). Nevertheless 
DNS did not work this way...Stephen mentioned that DNS  would not 
work through anlgform.html/pl - surely this then must be in addition 
to anything I noted above or what?




--
Martin Freedman, CTO, ArchitectureHQ Ltd..
Office: +44.20.8374.7276
Mobile: +44.7788.416956
Fax:+44.20.8340.2576 
Email:  [EMAIL PROTECTED]
Pager:  +44.385.490490 (Need above mobile number)
ICQ:31683311
--
The contents of this email are confidential to the intended recipient 
and copyright Martin Freedman 2001, all rights reserved.  It may not 
be disclosed to or used by anyone other than this addressee, nor may
it be copied in any way. If received in error, please contact myself 
or ArchitectureHQ and destroy this message immediately. Please note 
that ArchitectureHQ and I accept no responsibility for viruses and 
it is your responsibility to scan attachments(if any). No contracts
may be concluded on behalf of myself or ArchitectureHQ by means of 
email.
--

This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




[analog-help] return code

2001-03-09 Thread qwertu

Hello,

I'm using analog 4.13 on a SuSE Linux 7.0 system.
I'm starting analog out of a perl script wich provides all parameters.
e.g.:

$command = "analog ";
$retcode = system($command);
print $retcode;   # print return code on screen

If analog ends successfully the return code is 0. If analog can't find the 
dns.txt or the logfile a warning is printed on screen, but the return code 
remains 0. Is there a way to get different return codes for each case (e.g. 
no logfile, no dns.txt, etc.)?

Hope, my bad english makes sense for you all!

Yours

Christian Teufel



This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] DNS WRITE but settings says DNS level

2001-03-09 Thread Stephen Turner

On Fri, 9 Mar 2001, Martin Freedman wrote:

 But I must be missing something with regard to using anlgform.html 
 as a test. Any switches it or any page PUTing to anlgform.pl that 
 are, say, for DNS or SETTINGS, will be forbidden by anlgform.pl, 
 but any name name value pairs in analog.cfg will not be 
 filtered/forbidden through anlgform.pl? This is the only way I can 
 see how SETTINGS ON and HOSTURL are set since otherwise I 
 should never have been able to get SETTINGS ON working when 
 called by anlgform.pl (since it is in @forbidden()). Nevertheless 
 DNS did not work this way...Stephen mentioned that DNS  would not 
 work through anlgform.html/pl - surely this then must be in addition 
 to anything I noted above or what?
 

The form forbids DNS as above. But it also sets DNS itself, to READ if a
DNSFILE was specified, and to NONE otherwise.

-- 
Stephen Turner   http://www.statslab.cam.ac.uk/~sret1/
  Statistical Laboratory, Wilberforce Road, Cambridge, CB3 0WB, England
  "Your account can only be used for a single internet session at any one
   time and for no more than 24 hours in any one day." (NTL terms of use)


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] return code

2001-03-09 Thread Stephen Turner

On Fri, 9 Mar 2001, qwertu wrote:

 Hello,
 
 I'm using analog 4.13 on a SuSE Linux 7.0 system.
 I'm starting analog out of a perl script wich provides all parameters.
 e.g.:
 
 $command = "analog ";
 $retcode = system($command);
 print $retcode;   # print return code on screen
 
 If analog ends successfully the return code is 0. If analog can't find the 
 dns.txt or the logfile a warning is printed on screen, but the return code 
 remains 0. Is there a way to get different return codes for each case (e.g. 
 no logfile, no dns.txt, etc.)?
 

No, because these are not errors. Analog continues and does the best it can.
(For example, you might have two logfiles, and it could still read the
second one.) Fatal errors, which cause it to stop immediately, do have a
different return code.

-- 
Stephen Turner   http://www.statslab.cam.ac.uk/~sret1/
  Statistical Laboratory, Wilberforce Road, Cambridge, CB3 0WB, England
  "Your account can only be used for a single internet session at any one
   time and for no more than 24 hours in any one day." (NTL terms of use)


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




RE: [analog-help] return code

2001-03-09 Thread William Martin

maybe you could capture the output with backticks instead of system():

$retcode = `$command`;

and parse $retcode for different responses, so your script can then behave
accordingly. of course, you would need to know what the responses are ahead
of time.



 -Original Message-
 From: qwertu [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 09, 2001 7:06 AM
 To: [EMAIL PROTECTED]
 Subject: [analog-help] return code
 
 
 Hello,
 
 I'm using analog 4.13 on a SuSE Linux 7.0 system.
 I'm starting analog out of a perl script wich provides all parameters.
 e.g.:
 
 $command = "analog ";
 $retcode = system($command);
 print $retcode;   # print return code on screen
 
 If analog ends successfully the return code is 0. If analog 
 can't find the 
 dns.txt or the logfile a warning is printed on screen, but 
 the return code 
 remains 0. Is there a way to get different return codes for 
 each case (e.g. 
 no logfile, no dns.txt, etc.)?
 
 Hope, my bad english makes sense for you all!
 
 Yours
 
 Christian Teufel
 
 
 --
 --
 This is the analog-help mailing list. To unsubscribe from this
 mailing list, send mail to [EMAIL PROTECTED]
 with "unsubscribe" in the main BODY OF THE MESSAGE.
 List archived at 
http://www.mail-archive.com/analog-help@lists.isite.net/


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




RE: [analog-help] return code

2001-03-09 Thread Stephen Turner

On Fri, 9 Mar 2001, William Martin wrote:

 maybe you could capture the output with backticks instead of system():
 
 $retcode = `$command`;
 
 and parse $retcode for different responses, so your script can then behave
 accordingly. of course, you would need to know what the responses are ahead
 of time.
 

Even that wouldn't work because the warning messages are sent to standard
error not standard output.

-- 
Stephen Turner   http://www.statslab.cam.ac.uk/~sret1/
  Statistical Laboratory, Wilberforce Road, Cambridge, CB3 0WB, England
  "Your account can only be used for a single internet session at any one
   time and for no more than 24 hours in any one day." (NTL terms of use)


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




RE: [analog-help] return code

2001-03-09 Thread William Martin


  maybe you could capture the output with backticks instead 
 of system():
  
  $retcode = `$command`;
  
  and parse $retcode for different responses, so your script 
 can then behave
  accordingly. of course, you would need to know what the 
 responses are ahead
  of time.
  
 
 Even that wouldn't work because the warning messages are sent 
 to standard
 error not standard output.


yes, I wondered about that. but there's probably a way to redirect and
capture STDERR. I forget what the code is, though.

This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




[analog-help] I want Analog to display numeric ips in report

2001-03-09 Thread Oliver Ruehl

Hi

How can i force analog to display all of the so called "unknown numeric ips" in
a report.
Im using analog 4.16 on windows98.

Thank you all in advance

Oliver Ruehl
Germany


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] I want Analog to display numeric ips in report

2001-03-09 Thread webmaster

On 9 Mar 2001, at 16:27, Oliver Ruehl wrote about
 [analog-help] I want Analog to display numeric ip:

 How can i force analog to display all of the so called "unknown
 numeric ips" in a report. Im using analog 4.16 on windows98.

assuming that you already have
HOST ON   # Host Report

it could simply be a matter of setting a lower floor: try
HOSTFLOOR   0R

ciao

Massimo


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] return code

2001-03-09 Thread qwertu

Ok, thank's a lot.
I' think I'll grep analogs output and analyze it via my perl script, so I 
can deal with the warnings and react on them.

Yours

Christian Teufel

At 14:12 09.03.2001 +, you wrote:
On Fri, 9 Mar 2001, qwertu wrote:

  Hello,
 
  I'm using analog 4.13 on a SuSE Linux 7.0 system.
  I'm starting analog out of a perl script wich provides all parameters.
  e.g.:
  
  $command = "analog ";
  $retcode = system($command);
  print $retcode;   # print return code on screen
  
  If analog ends successfully the return code is 0. If analog can't find the
  dns.txt or the logfile a warning is printed on screen, but the return code
  remains 0. Is there a way to get different return codes for each case 
 (e.g.
  no logfile, no dns.txt, etc.)?
 

No, because these are not errors. Analog continues and does the best it can.
(For example, you might have two logfiles, and it could still read the
second one.) Fatal errors, which cause it to stop immediately, do have a
different return code.

--
Stephen Turner   http://www.statslab.cam.ac.uk/~sret1/
   Statistical Laboratory, Wilberforce Road, Cambridge, CB3 0WB, England
   "Your account can only be used for a single internet session at any one
time and for no more than 24 hours in any one day." (NTL terms of use)


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/



This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] I want Analog to display numeric ips in report

2001-03-09 Thread Oliver Ruehl

Thanks!

Oh man- Analog is such a complex program ;-)

At Friday 09.03.01  16:46, you wrote:
On 9 Mar 2001, at 16:27, Oliver Ruehl wrote about
 [analog-help] I want Analog to display numeric ip:

 How can i force analog to display all of the so called "unknown
 numeric ips" in a report. Im using analog 4.16 on windows98.

assuming that you already have
HOSTON# Host Report

it could simply be a matter of setting a lower floor: try
HOSTFLOOR   0R

ciao

Massimo


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/


Oliver Ruehl
ENTWICKLUNG
Zoom Digital Communication GmbH
Rathenaustrasse 2
63150 Heusenstamm

Tel.: 0 61 04 / 6 30 31
Fax: 0 61 04 / 6 31 23

http://www.zoom-web.com


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] return code

2001-03-09 Thread Jeremy Wadsack



William Martin wrote:

 maybe you could capture the output with backticks instead 
 
 of system():
 
 $retcode = `$command`;
 
 and parse $retcode for different responses, so your script 
 
 can then behave
 
 accordingly. of course, you would need to know what the 
 
 responses are ahead
 
 of time.
 
 
 Even that wouldn't work because the warning messages are sent 
 to standard
 error not standard output.
 
 
 
 yes, I wondered about that. but there's probably a way to redirect and
 capture STDERR. I forget what the code is, though.


$retcode = `$command 21`

or perhaps better,

eval "$command 21";
if( $@ ) {
...
}



-- 

Jeremy Wadsack
Wadsack-Allen Digital Group


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] return code

2001-03-09 Thread Jeremy Wadsack



 yes, I wondered about that. but there's probably a way to redirect and
 capture STDERR. I forget what the code is, though.
 
 $retcode = `$command 21`
 
 or perhaps better,
 
 eval "$command 21";
 if( $@ ) {
 ...
 }


Sorry, ignore that eval part -- we're talking system commands here not 
Perl commands. The best approach is this:


  $retcode = `$command 21`

-- 

Jeremy Wadsack
Wadsack-Allen Digital Group


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] request report configuaration

2001-03-09 Thread Jeremy Wadsack



[EMAIL PROTECTED] wrote:

 I am having problems with the request report section of the stats
 software. currently it is only showing the html file that have been
 downloaded.  I require to know named .exe files that are being
 downloaded as well. Can some tell me how this can be configured so that
 named  .exe files percentages and amounts  for each exe file can be
 seen.

This probably means you have

REQINCLUDE pages

in your configuration files. You can either remove this or override it 
with this command:

REQINCLUDE *

If that doesn't show the .exe files, then the floors are probably too 
high. You can see all the requests with this command:

REQFLOOR 1r

For details on these commands see docs/include.html and 
docs/othreps.html#FLOOR, respectively.

-- 

Jeremy Wadsack
Wadsack-Allen Digital Group


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




[analog-help] request report configuaration

2001-03-09 Thread chris

I am having problems with the request report section of the stats
software. currently it is only showing the html file that have been
downloaded.  I require to know named .exe files that are being
downloaded as well. Can some tell me how this can be configured so that
named  .exe files percentages and amounts  for each exe file can be
seen.

thanks in anticipation

chris


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




[analog-help] problem with *ARGSINCLUDE/EXCLUDE on 4.90Beta3

2001-03-09 Thread David Keppler

I've been testing out the new 4.90 betas for a site I work on. I've been
having some trouble getting the ARGSINCLUDE options to work properly for
the Referrer and Request reports. I'm trying to set the report up so it
reports back the arguments for a particular script in the referrer report
but no arguments elsewhere in the referrer or requests reports. With
ARGSEXCLUDE * , which from the documentation I think should just disable
argument reporting for the request report only, all argument reporting
everywhere is disabled. And there is no option like REQARGSEXCLUDE which
is the type of filter I want to use.

REFARGSINCLUDE and REFARGSEXCLUDE appear to have absolutely no effect on
the final report. I've tried dozens of combinations of these but nothing
works. I have a partial solution by setting REQARGSFLOOR to a ridiculously
high setting like 1000r to hide all the arguments in the request
report, but doing something similar to hide all but the one referrer I
want to display doesn't work. In fact, REFARGSFLOOR seems to do absolutely
nothing at all no matter what I set it to.

These are the lines in my analog.cfg file that relate to this:

REFARGSFLOOR 50r
REQARGSFLOOR 1r
REQFLOOR -200r

REFARGSINCLUDE /clickthrough.php3
REFARGSEXCLUDE *

This gives me just argument break downs for the referrer report. But the
floor of 50 requests to display particular argument is ignored, as far as
I can tell, and it defaults to using 10r for some reason.

Am I doing something blatantly wrong here or did I run across a bug in the
new beta?

Thanks,

-- David Keppler

[EMAIL PROTECTED]

Testing can show the presense of bugs, but not their absence.
-- Dijkstra



This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] request report configuaration

2001-03-09 Thread Aengus

"Jeremy Wadsack" [EMAIL PROTECTED] wrote:

 [EMAIL PROTECTED] wrote:

  I am having problems with the request report section of the stats
  software. currently it is only showing the html file that have been
  downloaded.  I require to know named .exe files that are being
  downloaded as well. Can some tell me how this can be configured so that
  named  .exe files percentages and amounts  for each exe file can be
  seen.

 This probably means you have

 REQINCLUDE pages

 in your configuration files. You can either remove this or override it
 with this command:

 REQINCLUDE *

I think

PAGEINCLUDE *.exe

might be more appropriate. It will include *.exe in the request report, but
still leave the gifs and jpgs that often swamp the request report if you do
REQINCLUDE *

Aengus


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/




Re: [analog-help] problem with *ARGSINCLUDE/EXCLUDE on 4.90Beta3

2001-03-09 Thread Duke Hillard

David,

I encountered a similar problem last week.
I use analog 4.16 on Solaris 8, but the solution
might fit your situation.  The Referrer Report
don't recognize your domain as do some other
reports (e.g., Request Report).  This might be
due to the structure of server log files.  So, the
domain name is needed.  Or to put it differently.

ARGSEXCLUDE /cgi-bin/*
works for the Request Report

REFARGSEXCLUDE /cgi-bin/*
doesn't work for the Referrer Report

REFARGSEXCLUDE http://www.mydomain.com/cgi-bin/*
works for the Referrer Report

-- Duke Hillard



David Keppler wrote:

 I've been testing out the new 4.90 betas for a site I work on. I've been
 having some trouble getting the ARGSINCLUDE options to work properly for
 the Referrer and Request reports. I'm trying to set the report up so it
 reports back the arguments for a particular script in the referrer report
 but no arguments elsewhere in the referrer or requests reports. With
 ARGSEXCLUDE * , which from the documentation I think should just disable
 argument reporting for the request report only, all argument reporting
 everywhere is disabled. And there is no option like REQARGSEXCLUDE which
 is the type of filter I want to use.

 REFARGSINCLUDE and REFARGSEXCLUDE appear to have absolutely no effect on
 the final report. I've tried dozens of combinations of these but nothing
 works. I have a partial solution by setting REQARGSFLOOR to a ridiculously
 high setting like 1000r to hide all the arguments in the request
 report, but doing something similar to hide all but the one referrer I
 want to display doesn't work. In fact, REFARGSFLOOR seems to do absolutely
 nothing at all no matter what I set it to.

 These are the lines in my analog.cfg file that relate to this:

 REFARGSFLOOR 50r
 REQARGSFLOOR 1r
 REQFLOOR -200r

 REFARGSINCLUDE /clickthrough.php3
 REFARGSEXCLUDE *

 This gives me just argument break downs for the referrer report. But the
 floor of 50 requests to display particular argument is ignored, as far as
 I can tell, and it defaults to using 10r for some reason.

 Am I doing something blatantly wrong here or did I run across a bug in the
 new beta?

 Thanks,

 -- David Keppler

 [EMAIL PROTECTED]

 Testing can show the presense of bugs, but not their absence.
 -- Dijkstra


begin:vcard 
n:Hillard;Duke
tel;work:337-482-5763
x-mozilla-html:TRUE
url:http://www.louisiana.edu/
org:University of Louisiana at Lafayette;University Computing Support Services
adr:;;P.O. Box 42770;Lafayette;LA;70504-2770;USA
version:2.1
email;internet:[EMAIL PROTECTED]
title:Computing Resources Coordinator
fn:Duke Hillard
end:vcard



[analog-help] Report for 7 days only

2001-03-09 Thread Robert Keith



How do I run a 
report for the last 7 days only using 4.90beta3? I have tried using the TO and 
FROM command but I am not sure if I am using them correctly. In my config file I 
am using:

FROM 
-00-00-07
TO 
-00-00-01

Thank you for any 
help you all could provide.


Re: [analog-help] Report for 7 days only

2001-03-09 Thread Jeremy Wadsack



Robert Keith wrote:

 How do I run a report for the last 7 days only using 4.90beta3? I have 
 tried using the TO and FROM command but I am not sure if I am using them 
 correctly. In my config file I am using:
 
 FROM -00-00-07
 
 TO -00-00-01
 
 Thank you for any help you all could provide.

This should work. Do you have some reason to think it's not working?

-- 

Jeremy Wadsack
Wadsack-Allen Digital Group


This is the analog-help mailing list. To unsubscribe from this
mailing list, send mail to [EMAIL PROTECTED]
with "unsubscribe" in the main BODY OF THE MESSAGE.
List archived at http://www.mail-archive.com/analog-help@lists.isite.net/