Xymon Mailing List Archive search

Custom RRD graphs

list Henrik Størner
Mon, 14 Nov 2005 16:43:40 +0100
Message-Id: <user-b46d4220cae2@xymon.invalid>

On Mon, Nov 14, 2005 at 08:54:07AM -0600, Rich Smrcina wrote:
Perhaps the underscore is also considered a valid character. I can 
process dataset names with underscores using the extra tests and script. 
 Also, I changed do_ncv.c to allow underscores in the dataset name.

            if ( ((*inp >= 'A') && (*inp <= 'Z')) ||
                 ((*inp >= 'a') && (*inp <= 'z')) ||
                 ((*inp >= '0') && (*inp <= '9')) ||
                 ((*inp == '_') ) ) {
Ah - you're right, the rrdcreate(1) man-page says as much. Missed that
when I first did the NCV module.

I've fixed that in my code.


Regards,
Henrik