From: <buc...@us...> - 2009-01-23 15:36:51
|
Revision: 123 http://devmon.svn.sourceforge.net/devmon/?rev=123&view=rev Author: buchanmilne Date: 2009-01-23 15:36:41 +0000 (Fri, 23 Jan 2009) Log Message: ----------- Version 0.3.1-beta1 Modified Paths: -------------- trunk/CHANGELOG trunk/devmon Modified: trunk/CHANGELOG =================================================================== --- trunk/CHANGELOG 2009-01-23 10:16:06 UTC (rev 122) +++ trunk/CHANGELOG 2009-01-23 15:36:41 UTC (rev 123) @@ -2,6 +2,41 @@ Devmon changelog. Contributors of specific features/patches are listed in parenthesis next to the respective entry. +Devmon v0.3.1-beta1 :: Released 2009-01-23 + Changes since 0.3.0 + - Fix loading non-standard ports from the config file + - Fix segfault in hobbitd_rrd caused by do_devmon.c and data with spaces in + repeater names + - Fix multiple custom threshholds and exceptions on the same test + - Send messages to BB/Hobbit/Xymon in debug mode (--debug) + For the previous behaviour (messages printed to stdout in debug + and not sent to BB/Hobbit/Xymon), use '--debug -p' + - Improve error handling, by opening log file immediately after forking, and + returning non-zero exit codes when exiting due to error (e.g. log_fatal) + - Fix thresh usage in options example in "USING" documentation + - Add INDEX transform + - Ensure repeaters created by CHAIN transform are tagged as such (so they can + be primary OID) + - Close and re-open log files on HUP + - Init script changes + -Merge Mandriva init script changes: + -run as non-root (optional, set RUNASUSER= in /etc/sysconfig/devmon) + -use reload (or readbbhosts) argument to run --readbbhosts + -fix return codes + -Use better killproc (internal_killproc) on platforms without a killproc that + takes a pid file option (makes stopping devmon more reliable) + -Add a rotate function/argument + - Strip spaces off names of repeaters before creating rrd section of message + - Set a timeout on the socket to hobbit (hardcoded to 10s for now) + - Use Hobbit/BB environment variables if present + - Adjust init script to run devmon under Hobbit or BB environment + - Honour Hobbit BBLOCATION / NET tag + - Handle line continuations in bb-hosts file (W.J.M. Nelis) + - Support BBDATEFORMAT (should provide better dates in Hobbit/BB status messages + by default if BBDATEFORMAT is set in hobbitserver.cfg) (W.J.M Nelis) + - Add new STATUS: key for message file, which allows extending the first + line of the status message + - Filters in hobbitdboard are regex's, anchor the conn text (Simeon Berkley) Devmon v0.3.0 :: Released 2008-04-03 Changes since 0.3.0-rc1 Modified: trunk/devmon =================================================================== --- trunk/devmon 2009-01-23 10:16:06 UTC (rev 122) +++ trunk/devmon 2009-01-23 15:36:41 UTC (rev 123) @@ -1,5 +1,5 @@ #!/usr/bin/perl -w -our $VERSION = '0.3.0'; +our $VERSION = '0.3.1-beta1'; # Devmon: An SNMP data collecteor & page generator for the BigBrother & # Hobbit network monitoring systems # Copyright (C) 2005-2006 Eric Schwimmer This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |