Xymon Mailing List Archive search

BIND graph

list Tom Georgoulias
Mon, 05 Jun 2006 15:23:55 -0400
Message-Id: <user-01ebcae8d5dc@xymon.invalid>

Tom Georgoulias wrote:
The graph def references a bind.rrd file, but the default dns test just generates a tcp.dns.rrd file.  Haven't done this myself, but I think you need to use the dns=TYPE:lookup tests to get that data.
Rich Smrcina wrote:
By default it looks itself up, but I changed it to a NS lookup and no
rrd file.
Someone can correct me if I'm wrong, but I just looked at do_bind.c file in the latest snapshot and I know why bind.rrd isn't being generated:

int do_bind_rrd(char *hostname, char *testname, char *msg, time_t tstamp)
{
         errprintf("bind rrd not implemented\n");
         return -1;
}


Tom