-
oops. this is the url:
http://lancet.mit.edu/mwall/projects/nagios/nagiosgraph-1.3.3-mwall-100106.tgz.
2010-01-07 03:25:36 UTC by mwall
-
i was unable to get servdb to work properly, and there was a fair amount of questionable code in showservice.cgi, so i did some refactoring and got the services to work properly.
http://lancet.mit.edu/mwall/projects/nagios/nagiosgraph-1.3.3-mwall-100105.tgz
this includes the following changes:
* added 'plotasLINE1', 'plotasLINE2', ... options to specify line weights by dataset
* added...
2010-01-07 03:24:28 UTC by mwall
-
folks,
i have made some bug fixes and minor feature additions to nagiosgraph 1.3.3. in lieu of making changes directly to the repository, i have made my changes available here:
http://lancet.mit.edu/mwall/projects/nagios/nagiosgraph-1.3.3-mwall-100105.tgz
the specific changes i made include:
* cleaner stylesheet
* deal with undefined db in getlabels
* code formatting to make 80...
2010-01-05 23:53:38 UTC by mwall
-
I'm not sure what's wrong, but try adding:
if (not defined $db) {
my (@labels) = ();
return \@labels;
}
at line 1056 in ngshared.pm. That should address the first 2 errors.
2009-12-24 18:01:44 UTC by abbrenner
-
I'm not sure what's going on. I don't use Nagios 3 (yet), so I don't know if the graph_* values are Nagios 3, or some other graphing utility. They are not Nagiosgraph. Nagiosgraph would need something in its map file to graph data.
2009-12-24 17:04:17 UTC by abbrenner
-
HI. I have created a new command, I want it to have a graph...
The command definition in the file /etc/nagios3/commands.cfg
define command {
command_name check_value
command_line python /usr/lib/nagios/plugins/check_value $ARG1$
}
So a definition of this service is:
define service {
use generic-service
host_name.
2009-12-18 22:58:00 UTC by tzulberti
-
Hello world, i have trouble with nagiosgraph version 1.3.3 installed on freebsd 7.2
when i try open graph ntdisk, graph not show in browser, other graphs show normal
----------
windows-servers.cfg
define service{
use windows-service
host_name srv1-srv, srv2-srv
service_description C:\ Drive Space
check_command check_nt!USEDDISKSPACE!-l...
2009-12-16 16:07:22 UTC by russpartizanen
-
not getting any data, nagiosgraph.log shows this
Mon Dec 14 13:23:25 2009 insert.pl warn - perfdata not recognized: servicedescr:disk_space_root
output:DISK OK [1583784 kB (82%) free on /]
perfdata:
and no rrd files are being created. I am at v1.3.2 for Nagios.
2009-12-14 18:25:22 UTC by newlife007
-
/output:DISK.*(\d+) \((\d+)%\) free on ([^]+])/
and push @s, [ 'diskgd',
[ 'bytesfree', GAUGE, $1 ],
[ 'bytesmax', GAUGE, $2 ? $1/$2*100 : 'U' ]] and
push @s, [ 'diskpct',
[ 'pctfree', GAUGE, $2 ] ];.
2009-12-11 22:33:51 UTC by abbrenner
-
Like this?
/output:DISK.*(\d+) \((\d+)%\) free on ([^]+])/
and push @s, [ 'diskgd',
[ 'bytesfree', GAUGE, $1 ],
[ 'bytesmax', GAUGE, $2 ? $1/$2*100 ]] and
push @s, [ 'diskpct',
[ 'pctfree', GAUGE, $2 ] ];.
2009-12-11 21:12:34 UTC by newlife007