Re: NOTIFY logging problem

2010-02-01 Thread Frank Cusack

On February 1, 2010 1:12:56 PM +1100 Mark Andrews  wrote:


In message , Frank
Cusack  writes:

On February 1, 2010 11:35:15 AM +1100 Mark Andrews  wrote:
> You need to be looking a debug 3.
>
> notify_log(notify->zone, ISC_LOG_DEBUG(3), "sending notify to
> %s", addrbuf);

ouch, debug 3 is probably way TMI.  I guess I'll just patch the above
to log at info.  Why isn't that the default anyway?  Seems to me that
you aren't likely to have "too many" servers and the "info" level is
already pretty verbose so you would expect (or at least *I* would expect)
to have that amount of information.


When you have 10+ zones with 10's of servers it gets noisy.


quite.  I hadn't considered there would be a log entry per zone.

-frank
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: NOTIFY logging problem

2010-01-31 Thread Mark Andrews

In message , Frank Cusack 
writes:
> On February 1, 2010 11:35:15 AM +1100 Mark Andrews  wrote:
> > You need to be looking a debug 3.
> >
> > notify_log(notify->zone, ISC_LOG_DEBUG(3), "sending notify to %s",
> >addrbuf);
> 
> ouch, debug 3 is probably way TMI.  I guess I'll just patch the above
> to log at info.  Why isn't that the default anyway?  Seems to me that
> you aren't likely to have "too many" servers and the "info" level is
> already pretty verbose so you would expect (or at least *I* would expect)
> to have that amount of information.

When you have 10+ zones with 10's of servers it gets noisy.

Log to a file with "debug 3;"
 
> As it is, and I mean without turning on debug logging, I have to infer
> what servers notify was sent to based on AXFR/IXFR requests.  (I try not
> to trust looking at config files when debugging because you can't be sure
> that the running config is the same as the on-disk config.)
> 
> Anyway thanks for the pointer, it looks trivial to update.
> 
> -frank
-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: ma...@isc.org
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: NOTIFY logging problem

2010-01-31 Thread Frank Cusack

On February 1, 2010 11:35:15 AM +1100 Mark Andrews  wrote:

You need to be looking a debug 3.

notify_log(notify->zone, ISC_LOG_DEBUG(3), "sending notify to %s",
   addrbuf);


ouch, debug 3 is probably way TMI.  I guess I'll just patch the above
to log at info.  Why isn't that the default anyway?  Seems to me that
you aren't likely to have "too many" servers and the "info" level is
already pretty verbose so you would expect (or at least *I* would expect)
to have that amount of information.

As it is, and I mean without turning on debug logging, I have to infer
what servers notify was sent to based on AXFR/IXFR requests.  (I try not
to trust looking at config files when debugging because you can't be sure
that the running config is the same as the on-disk config.)

Anyway thanks for the pointer, it looks trivial to update.

-frank
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users


Re: NOTIFY logging problem

2010-01-31 Thread Mark Andrews

In message , Frank Cusack 
writes:
> How can I get logs of all NOTIFY messages sent?
> 
> logging {
>   // use local0 instead of daemon
>   channel local0_syslog {
> syslog local0;
> severity info;
>   };
>   category notify{ local0_syslog; default_debug; };
> };
> 
> The above only generates a summary log:
> 
> zone XXX/IN/internet: sending notifies (serial 2010012700)
> 
> I'd like to see a verification of every host a NOTIFY message was sent to.

You need to be looking a debug 3.

notify_log(notify->zone, ISC_LOG_DEBUG(3), "sending notify to %s",
   addrbuf);

-- 
Mark Andrews, ISC
1 Seymour St., Dundas Valley, NSW 2117, Australia
PHONE: +61 2 9871 4742 INTERNET: ma...@isc.org
___
bind-users mailing list
bind-users@lists.isc.org
https://lists.isc.org/mailman/listinfo/bind-users