From noreply at sourceforge.net Sun Jul 3 16:51:45 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 03 Jul 2011 10:51:45 -0400 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3351505 ] check_mysql - allow until condition on a slave Message-ID: Patches item #3351505, was opened at 2011-07-03 10:51 Message generated for change (Tracker Item Submitted) made by megamaddin You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3351505&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Mega Maddin (megamaddin) Assigned to: Nobody/Anonymous (nobody) Summary: check_mysql - allow until condition on a slave Initial Comment: Patch against Plugin Version (-V output): check_mysql v1.4.15 (nagios-plugins 1.4.15) Plugin Name: check_mysql Example Plugin Commandline: check_mysql -H localhost -S Tested on operating system: CentOS 5.5 Tested on architecture: AMD64 Tested with compiler: gcc-Version 4.1.2 20080704 (Red Hat 4.1.2-50) The check_mysql plugin fails with a wrong exit code, if the mysql slave server is started with an UNTIL condition and the sever reaches its desired binlog position. If the binlog position is reached, the slave sql thread stops running, until it's started again, and that is the problem. This patch solves this error by looking if the slave thread is started with an until condition and throws only an error if the Last_Errno variable in mysql is set. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3351505&group_id=29880 From liujun at pinwoo.com Mon Jul 4 07:56:58 2011 From: liujun at pinwoo.com (liujun) Date: Mon, 4 Jul 2011 13:56:58 +0800 Subject: [Nagiosplug-devel] check_procs error Message-ID: <201107041356554820803@pinwoo.com> Hi, Can you help me? operating system:rhel 5.4 execute command :/usr/local/nagios/libexec/check_procs -w 10 -c 20 --metric=CPU error message: System call sent warnings to stderr: Warning: bad syntax, perhaps a bogus '-'? See /usr/share/doc/procps-3.2.7/FAQ Why? 2011-07-04 liujun -------------- next part -------------- An HTML attachment was scrubbed... URL: From nagios at myname.nl Mon Jul 4 11:36:39 2011 From: nagios at myname.nl (=?UTF-8?Q?Dani=C3=ABl_van_Eeden?=) Date: Mon, 04 Jul 2011 11:36:39 +0200 Subject: [Nagiosplug-devel] =?utf-8?b?W3BhdGNoXSBteXNxbF9jaGVjay5jICYgUkVR?= =?utf-8?q?UIREMENTS?= In-Reply-To: References: Message-ID: Hi, There was no progress on this bug/patch in a few months. On sf.net it's still Open. Does this mean that check_mysql is not longer maintained? Regards, Dani?l On Mon, 11 Apr 2011 15:13:09 +0200, Dani?l van Eeden wrote: > Hi, > > I've created a patch to fix the documentation in the REQUIREMENTS > file > and to add some more comments to check_mysql.c > > SF.net BugID: > > > http://sourceforge.net/tracker/?func=detail&aid=3269273&group_id=29880&atid=397597 > > Regards, > > Dani?l van Eeden > > diff --git a/REQUIREMENTS b/REQUIREMENTS > index fd41ded..33c5eb9 100644 > --- a/REQUIREMENTS > +++ b/REQUIREMENTS > @@ -36,10 +36,9 @@ check_ldap: > > check_mysql, check_mysql_query: > - Requires the MySQL libraries available from > - http://www.mysql.org/ > + http://dev.mysql.com/downloads/ > Lib: libmysql, libmysqlclient > - Redhat Powertools Source: mysql-3.20.32a-3.i386.rpm, > mysql-devel-3.20.32a-3.i386.rpm (these seem to be broken, however) > - RPMS from www.mysql.org work better > + Redhat Source (RHEL6, YUM): mysql-devel, mysql-libs > Must have mysql_config in PATH or specified with > --with-mysql=DIR > for DIR/bin/mysql_config > > check_pqsql: > diff --git a/plugins/check_mysql.c b/plugins/check_mysql.c > index d9b4e53..0dfb1fd 100644 > --- a/plugins/check_mysql.c > +++ b/plugins/check_mysql.c > @@ -5,7 +5,7 @@ > * License: GPL > * Copyright (c) 1999 Didi Rieder (adrieder at sbox.tu-graz.ac.at) > * Copyright (c) 2000 Karl DeBisschop > (kdebisschop at users.sourceforge.net) > -* Copyright (c) 1999-2009 Nagios Plugins Development Team > +* Copyright (c) 1999-2011 Nagios Plugins Development Team > * > * Description: > * > @@ -31,7 +31,7 @@ > > > > *****************************************************************************/ > > const char *progname = "check_mysql"; > -const char *copyright = "1999-2007"; > +const char *copyright = "1999-2011"; > const char *email = "nagiosplug-devel at lists.sourceforge.net"; > > #define SLAVERESULTSIZE 70 > @@ -157,7 +157,7 @@ main (int argc, char **argv) > } > > } else { > - /* mysql 4.x.x */ > + /* mysql 4.x.x and mysql 5.x.x */ > int slave_io_field = -1 , slave_sql_field = -1, > seconds_behind_field = -1, i, num_fields; > MYSQL_FIELD* fields; > > @@ -178,13 +178,17 @@ main (int argc, char **argv) > } > } > > + /* Check if slave status is available */ > if ((slave_io_field < 0) || (slave_sql_field < 0) || (num_fields > == > 0)) { > mysql_free_result (res); > mysql_close (&mysql); > die (STATE_CRITICAL, "Slave status unavailable\n"); > } > > + /* Save slave status in slaveresult */ > snprintf (slaveresult, SLAVERESULTSIZE, "Slave IO: %s Slave SQL: > %s > Seconds Behind Master: %s", row[slave_io_field], > row[slave_sql_field], > seconds_behind_field!=-1?row[seconds_behind_field]:"Unknown"); > + > + /* Raise critical error if SQL THREAD or IO THREAD are stopped > */ > if (strcmp (row[slave_io_field], "Yes") != 0 || strcmp > (row[slave_sql_field], "Yes") != 0) { > mysql_free_result (res); > mysql_close (&mysql); > @@ -199,6 +203,7 @@ main (int argc, char **argv) > } > } > > + /* Check Seconds Behind against threshold */ > if ((seconds_behind_field != -1) && (strcmp > (row[seconds_behind_field], "NULL") != 0)) { > double value = atof(row[seconds_behind_field]); > int status; > > > ------------------------------------------------------------------------------ > Xperia(TM) PLAY > It's a major breakthrough. An authentic gaming > smartphone on the nation's most reliable network. > And it wants your games. > http://p.sf.net/sfu/verizon-sfdev > _______________________________________________________ > Nagios Plugin Development Mailing List > Nagiosplug-devel at lists.sourceforge.net > Unsubscribe at > https://lists.sourceforge.net/lists/listinfo/nagiosplug-devel > ::: Please include plugins version (-v) and OS when reporting any > issue. > ::: Messages without supporting info will risk being sent to > /dev/null From noreply at sourceforge.net Fri Jul 8 10:22:04 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 08 Jul 2011 08:22:04 +0000 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3358348 ] check_smtp SIGPIPE (rc=141) error fix Message-ID: Patches item #3358348, was opened at 2011-07-08 08:22 Message generated for change (Tracker Item Submitted) made by duncan_ferguson You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bugfix Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Duncan Ferguson (duncan_ferguson) Assigned to: Nobody/Anonymous (nobody) Summary: check_smtp SIGPIPE (rc=141) error fix Initial Comment: When running check_smtp against some Exchange server versions the server can close the connection before the QUIT command is sent, resulting in a 141 return code (due to SIGPIPE signal). This patch will ignore the SIGPIPE and catch the error when it occurs. This appears to be a non-fatal error as no other problems have been reported about the Exchange server by SMTP users and there are no problems identified in the Exchange logs. $ ./check_smtp -V check_smtp v1.4.15 (nagios-plugins 1.4.15) $ ./check_smtp -H 192.168.0.1 -v HELOCMD: HELO localhost 220 Connection was closed by server before we could send QUIT command SMTP OK - 0.001 sec. response time, ping |time=0.000984s;;;0.000000 rc = 0 ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 From warrick.fitzgerald at gmail.com Tue Jul 12 16:22:17 2011 From: warrick.fitzgerald at gmail.com (Warrick Fitzgerald) Date: Tue, 12 Jul 2011 10:22:17 -0400 Subject: [Nagiosplug-devel] check_nt USEDDISKSPACE Message-ID: Hi Guys, I'd like to call check_nt USEDDISKSPACE, but specify the warning and critical level in bytes, bit a % of disk free. Does anyone know if this is possible? Thanks Warrick -------------- next part -------------- An HTML attachment was scrubbed... URL: From noreply at sourceforge.net Wed Jul 13 11:15:32 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Wed, 13 Jul 2011 11:15:32 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3358348 ] check_smtp SIGPIPE (rc=141) error fix Message-ID: Patches item #3358348, was opened at 2011-07-08 10:22 Message generated for change (Comment added) made by ulrik_haugen You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bugfix Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Duncan Ferguson (duncan_ferguson) Assigned to: Nobody/Anonymous (nobody) Summary: check_smtp SIGPIPE (rc=141) error fix Initial Comment: When running check_smtp against some Exchange server versions the server can close the connection before the QUIT command is sent, resulting in a 141 return code (due to SIGPIPE signal). This patch will ignore the SIGPIPE and catch the error when it occurs. This appears to be a non-fatal error as no other problems have been reported about the Exchange server by SMTP users and there are no problems identified in the Exchange logs. $ ./check_smtp -V check_smtp v1.4.15 (nagios-plugins 1.4.15) $ ./check_smtp -H 192.168.0.1 -v HELOCMD: HELO localhost 220 Connection was closed by server before we could send QUIT command SMTP OK - 0.001 sec. response time, ping |time=0.000984s;;;0.000000 rc = 0 ---------------------------------------------------------------------- Comment By: Ulrik Haugen (ulrik_haugen) Date: 2011-07-13 11:15 Message: check_smtp returning 141 is obviously a problem, but masking the cause of it and returning STATE_OK instead seems an even bigger problem to me. The server closing the connection prematurely could be a resource problem. If this happens for you so often that tuning max_check_attempts, normal_check_interval and retry_check_interval doesn't help then a patch for check_smtp may be needed, but in that case ignoring that the connection closes unexpectedly must be and option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 From noreply at sourceforge.net Fri Jul 15 13:17:23 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2011 11:17:23 +0000 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3358348 ] check_smtp SIGPIPE (rc=141) error fix Message-ID: Patches item #3358348, was opened at 2011-07-08 08:22 Message generated for change (Comment added) made by duncan_ferguson You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bugfix Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Duncan Ferguson (duncan_ferguson) Assigned to: Nobody/Anonymous (nobody) Summary: check_smtp SIGPIPE (rc=141) error fix Initial Comment: When running check_smtp against some Exchange server versions the server can close the connection before the QUIT command is sent, resulting in a 141 return code (due to SIGPIPE signal). This patch will ignore the SIGPIPE and catch the error when it occurs. This appears to be a non-fatal error as no other problems have been reported about the Exchange server by SMTP users and there are no problems identified in the Exchange logs. $ ./check_smtp -V check_smtp v1.4.15 (nagios-plugins 1.4.15) $ ./check_smtp -H 192.168.0.1 -v HELOCMD: HELO localhost 220 Connection was closed by server before we could send QUIT command SMTP OK - 0.001 sec. response time, ping |time=0.000984s;;;0.000000 rc = 0 ---------------------------------------------------------------------- >Comment By: Duncan Ferguson (duncan_ferguson) Date: 2011-07-15 11:17 Message: Added a patch to make the action configurable. Default action is to exit unknown with a message This is overridable by using '-q' so the error is ignored (but still seen when using -v) ---------------------------------------------------------------------- Comment By: Ulrik Haugen (ulrik_haugen) Date: 2011-07-13 09:15 Message: check_smtp returning 141 is obviously a problem, but masking the cause of it and returning STATE_OK instead seems an even bigger problem to me. The server closing the connection prematurely could be a resource problem. If this happens for you so often that tuning max_check_attempts, normal_check_interval and retry_check_interval doesn't help then a patch for check_smtp may be needed, but in that case ignoring that the connection closes unexpectedly must be and option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 From noreply at sourceforge.net Fri Jul 15 18:03:29 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Fri, 15 Jul 2011 17:03:29 +0100 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3358348 ] check_smtp SIGPIPE (rc=141) error fix Message-ID: Patches item #3358348, was opened at 2011-07-08 09:22 Message generated for change (Comment added) made by tonvoon You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Bugfix Group: release-1.4.15 >Status: Closed >Resolution: Fixed Priority: 5 Private: No Submitted By: Duncan Ferguson (duncan_ferguson) Assigned to: Nobody/Anonymous (nobody) Summary: check_smtp SIGPIPE (rc=141) error fix Initial Comment: When running check_smtp against some Exchange server versions the server can close the connection before the QUIT command is sent, resulting in a 141 return code (due to SIGPIPE signal). This patch will ignore the SIGPIPE and catch the error when it occurs. This appears to be a non-fatal error as no other problems have been reported about the Exchange server by SMTP users and there are no problems identified in the Exchange logs. $ ./check_smtp -V check_smtp v1.4.15 (nagios-plugins 1.4.15) $ ./check_smtp -H 192.168.0.1 -v HELOCMD: HELO localhost 220 Connection was closed by server before we could send QUIT command SMTP OK - 0.001 sec. response time, ping |time=0.000984s;;;0.000000 rc = 0 ---------------------------------------------------------------------- >Comment By: Ton Voon (tonvoon) Date: 2011-07-15 17:03 Message: This is applied in HEAD now. Thanks to Duncan and Ulrik. ---------------------------------------------------------------------- Comment By: Duncan Ferguson (duncan_ferguson) Date: 2011-07-15 12:17 Message: Added a patch to make the action configurable. Default action is to exit unknown with a message This is overridable by using '-q' so the error is ignored (but still seen when using -v) ---------------------------------------------------------------------- Comment By: Ulrik Haugen (ulrik_haugen) Date: 2011-07-13 10:15 Message: check_smtp returning 141 is obviously a problem, but masking the cause of it and returning STATE_OK instead seems an even bigger problem to me. The server closing the connection prematurely could be a resource problem. If this happens for you so often that tuning max_check_attempts, normal_check_interval and retry_check_interval doesn't help then a patch for check_smtp may be needed, but in that case ignoring that the connection closes unexpectedly must be and option. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3358348&group_id=29880 From noreply at sourceforge.net Thu Jul 21 12:46:00 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Thu, 21 Jul 2011 12:46:00 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3373486 ] check_users: improve performance Message-ID: Patches item #3373486, was opened at 2011-07-21 12:46 Message generated for change (Tracker Item Submitted) made by mmremy You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3373486&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Marc (mmremy) Assigned to: Nobody/Anonymous (nobody) Summary: check_users: improve performance Initial Comment: This patch use the utxent function family to collect the user data. It improve the check speed. Tested only on Debian Squeeze x86_64. If I right understood the man page, it should work on any system conforming to POSIX.1-2001. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3373486&group_id=29880 From jessp at traiana.com Thu Jul 21 13:38:47 2011 From: jessp at traiana.com (Jess Portnoy) Date: Thu, 21 Jul 2011 14:38:47 +0300 Subject: [Nagiosplug-devel] A patch for check_file_ages_in_dirs In-Reply-To: <1311247715.3171.351.camel@debian.localdomain> References: <1311239840.3171.346.camel@debian.localdomain> <1311247715.3171.351.camel@debian.localdomain> Message-ID: <1311248327.3171.355.camel@debian.localdomain> Hello list, My patch consist of the following changes: - Added support for single file monitoring [in addition to monitoring all files in a given dir] - Modified arguments for stat from: - st_ctime=`stat --printf=%Y ${next_filepath}` to: + st_ctime=`stat -c%Y ${next_filepath}` Because the --printf flag doesn't exist in older Linux distros versions [for instance RHEL 4]. - Fixed: # /usr/local/nagios_plugins/check_file_ages_in_dirs -f /var/log/httpd/error_log -c 120 -w hhh /usr/local/nagios_plugins/check_file_ages_in_dirs: line 228: [: hhh: integer expression expected Thanks, -- Best regards, Jess Portnoy -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: check_file_ages_in_dirs.diff Type: text/x-patch Size: 4463 bytes Desc: not available URL: From noreply at sourceforge.net Sun Jul 24 12:30:41 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 12:30:41 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376589 ] adds MAXBYTES support for the --tablespace check Message-ID: Patches item #3376589, was opened at 2011-07-24 12:30 Message generated for change (Tracker Item Submitted) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) Summary: adds MAXBYTES support for the --tablespace check Initial Comment: This patch adds MAXBYTES support to the --tablespace check, ie. check against the maximum allocatable bytes for a given tablespace instead of the currently allocated SIZE of the tablespace. ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 From noreply at sourceforge.net Sun Jul 24 12:32:16 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 12:32:16 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376589 ] adds MAXBYTES support for the --tablespace check Message-ID: Patches item #3376589, was opened at 2011-07-24 12:30 Message generated for change (Comment added) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) Summary: adds MAXBYTES support for the --tablespace check Initial Comment: This patch adds MAXBYTES support to the --tablespace check, ie. check against the maximum allocatable bytes for a given tablespace instead of the currently allocated SIZE of the tablespace. ---------------------------------------------------------------------- >Comment By: Frederic Krueger (fkrueger2) Date: 2011-07-24 12:32 Message: This patch is a part 1 of a 3 part series that are about to be submitted right n.. ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 From noreply at sourceforge.net Sun Jul 24 12:33:34 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 12:33:34 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376589 ] check_oracle: adds MAXBYTES support for the tablespace check Message-ID: Patches item #3376589, was opened at 2011-07-24 12:30 Message generated for change (Settings changed) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) >Summary: check_oracle: adds MAXBYTES support for the tablespace check Initial Comment: This patch adds MAXBYTES support to the --tablespace check, ie. check against the maximum allocatable bytes for a given tablespace instead of the currently allocated SIZE of the tablespace. ---------------------------------------------------------------------- Comment By: Frederic Krueger (fkrueger2) Date: 2011-07-24 12:32 Message: This patch is a part 1 of a 3 part series that are about to be submitted right n.. ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376589&group_id=29880 From noreply at sourceforge.net Sun Jul 24 12:35:34 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 12:35:34 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376591 ] check_oracle: "easy login" feature Message-ID: Patches item #3376591, was opened at 2011-07-24 12:35 Message generated for change (Tracker Item Submitted) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376591&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) Summary: check_oracle: "easy login" feature Initial Comment: With this small patch check_oracle will try to use "sqlplus / as sysdba" when there hasn't been supplied a user and password. This will work if sqlplus is run in an environment that is correctly setup for "auto login" ;-) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376591&group_id=29880 From noreply at sourceforge.net Sun Jul 24 12:42:51 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 12:42:51 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376592 ] check_oracle: detailed warn/crit level support Message-ID: Patches item #3376592, was opened at 2011-07-24 12:42 Message generated for change (Tracker Item Submitted) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376592&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) Summary: check_oracle: detailed warn/crit level support Initial Comment: With this patch the user is allowed to (rather specifically) define warning and critical levels for the --tablespace and the --cache check. You can use percentages (ie. 85%, 95%) and sizes (in M,G,T-Bytes of used space) as well as "negative sizes" (in M,G,T-Bytes below the maximum space available, ie. -2G, -1300M). Also, this one patches the warn/crit-level implementation of the --cache feature.. you can now specify the ratio percentages up to the fourth digit after the mark (ie. 99.9127% ;-)). ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376592&group_id=29880 From noreply at sourceforge.net Sun Jul 24 15:57:17 2011 From: noreply at sourceforge.net (SourceForge.net) Date: Sun, 24 Jul 2011 15:57:17 +0200 Subject: [Nagiosplug-devel] [ nagiosplug-Patches-3376592 ] check_oracle: detailed warn/crit level support Message-ID: Patches item #3376592, was opened at 2011-07-24 12:42 Message generated for change (Comment added) made by fkrueger2 You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376592&group_id=29880 Please note that this message will contain a full copy of the comment thread, including the initial issue submission, for this request, not just the latest update. Category: Enhancement Group: release-1.4.15 Status: Open Resolution: None Priority: 5 Private: No Submitted By: Frederic Krueger (fkrueger2) Assigned to: Nobody/Anonymous (nobody) Summary: check_oracle: detailed warn/crit level support Initial Comment: With this patch the user is allowed to (rather specifically) define warning and critical levels for the --tablespace and the --cache check. You can use percentages (ie. 85%, 95%) and sizes (in M,G,T-Bytes of used space) as well as "negative sizes" (in M,G,T-Bytes below the maximum space available, ie. -2G, -1300M). Also, this one patches the warn/crit-level implementation of the --cache feature.. you can now specify the ratio percentages up to the fourth digit after the mark (ie. 99.9127% ;-)). ---------------------------------------------------------------------- >Comment By: Frederic Krueger (fkrueger2) Date: 2011-07-24 15:57 Message: Also the perfdata output has been, for the most part, sanitized and rewritten to reflect the new possibilites.. using default warn/crit levels there shouldn't be no noticable change to the perfdata output(s) ---------------------------------------------------------------------- You can respond by visiting: https://sourceforge.net/tracker/?func=detail&atid=397599&aid=3376592&group_id=29880