add god check to binary
[god.git] / History.txt
blobf7ef6203123876dba0ec4f3f975b6c4bfa55fe11
1 == 0.6.0 / 
3 * Minor Enhancement
4   * Move Syslog calls into God::Logger and clean up all calling code
5   * Remove god's pid file on user requested termination
6   * Better handling and cleanup of DRb server's unix domain socket
7   * Allow shorthand for requesting a god log
8 * New Conditions
9   * DiskUsage < PollCondition - trigger if disk usage is above limit on mount [Rudy Desjardins]
11 == 0.5.2 / 2007-10-10
13 * Minor Enhancement
14   * Allow extra args to pass through to config file
15   
16 == 0.5.1 / 2007-10-08
18 * Bug Fixes
19   * Rescue connection refused in http response code condition
21 == 0.5.0 / 2007-10-05
23 * Major Enhancements
24   * Implement lifecycle scoped metric to allow for cross-state conditions
25   * Add TriggerCondition for conditions that need info about state changes
26   * Implement notification system
27   * Add Tasks (a generalization of Watches) to do non-process related tasks
28   * Add example init.d file in GOD_INSTALL_DIR/init/god [scott becker]
29   * Add human readable info to conditions (and make low level log lines debug)
30   * Switch DRb to use a unix domain socket for security reasons
31 * Minor Enchancements
32   * Allow EventConditions to do transition overloading
33   * Report errors during god startup instead of failing silently
34   * Make transition block optional (default to Always condition returning true)
35   * Better usage info for `god --help`
36   * Explain what's going on when attempting to rebind to an in-use port
37   * Add -b option to god binary to auto-bind to an unused port
38   * Add `god quit` to stop god without stopping any tasks
39   * Make self-daemonized Watch commands synchronous (as they should be)
40   * Allow self-daemonized Watches to specify a log (could be useful)
41   * Check for existence of config file if specified
42   * Robustify `god load` and report errors back to the command issuer
43   * Warn when `god load` tries to set global options
44   * Add Configurable.clear method and make built-in conditions clear on entry
45 * New Conditions
46   * Flapping < TriggerCondition - trigger on state change
47   * HttpResponseCode < PollCondition - trigger on http response code or timeout (thx scott becker)
48 * New Contacts
49   * Email < Contact - notify via email (smtp)
50 * Bug Fixes
51   * Fix abort not aborting problem
52   * Fix -p option not working for god binary
53   * Fix God.init not accepting block (thx _eric)
54   * Fix SIGHUP ignore (thx _eric)
55   * Fix error reporting on `god --help` (don't error report a normal SystemExit)
57 == 0.4.3 / 2007-09-10
58 * Bug Fixes
59   * fix Process#alive? to not raise on no such file (affects `god terminate`)
61 == 0.4.2 / 2007-09-10
62 * Bug Fixes
63   * fix netlink buffer issue that prevented events on Linux from working consistently [dkresge]
65 == 0.4.1 / 2007-09-10
66 * Bug Fixes
67   * require 'stringio' for ruby 1.8.5
69 == 0.4.0 / 2007-09-10
71 * Major Enhancements
72   * Add the ability for conditions to override transition state (for exceptional cases)
73   * Implement dynamic load of config files while god is running (god load <filename>)
74   * Add ability to save auto-daemonized process output to a log file
75   * Add robust default stop lambda command for auto-daemonized processes (inspired by _eric)
76   * Add status command for god binary (shows status of each watch)
77   * Create proper logger with timestamps
78   * Add log command to god binary to get real time logs for a specific watch from a running god instance
79   * Add terminate command for god binary (stop god and all watches)
80 * Minor Enhancements
81   * Enforce validity of Watches
82   * Enforce that God.init is not called after a Watch
83   * Move pid_file_directory creation and validation to God.start
84   * Remove check for at least one Watch during startup (now that dynamic loading exists)
85 * New Conditions
86   * Tries < PollCondition - triggers after the specified number of tries
87   * Add :notify_when_flapping behavior to check for oscillation [kevinclark]
88   * Add :degrading_lambda condition. [kevinclark]
89     It uses a decaying interval (1/2 rate) for 3 cycles before failing.
90 * Bug Fixes
91   * Use exit!(0) instead of exit! in god binary to exit with code 0 (instead of default -1)
92   * Command line group control fixed
93   * Fix cross-thread return problem
95 == 0.3.0 / 2007-08-17
97 * Fix netlink header problem on Ubuntu Edgy [Dan Sully]
98 * Add uid/gid setting for processes [kevinclark]
99 * Add autostart flag for watches so they don't necessarily startup with god [kevinclark]
100 * Change command line call options for god binary to accommodate watch start/stop functionality
101 * Add individual start/stop/restart grace periods for finer grained control
102 * Change default DRb port to 17165 ('god'.to_i(32))
103 * Implement command line control to start/restart/stop/monitor/unmonitor watches/groups by name
104 * Watches can now belong to a group that can be controlled as a whole
105 * Allow god to be installed (sans events) on systems that don't support events
106 * Daemonize and handle PID files for non-daemonizing scripts [kevinclark]
107 * Fix simple mode lifecycle gap
108 * Remove necessity to specify pid_file for conditions
109 * Change config file to use God.init and God.watch directly instead of God.meddle block
110 * Move god binary command logic to main library
111 * Enhance god binary with better reporting
112 * Fix synchronization bug in Timer (reported by Srini Panguluri)
113 * Add Lambda condition for easy custom conditions [Mike Mintz]
114 * Add sugar for numerics (seconds, minutes, kilobytes, megabytes, percent, etc)
115 * Add optional PID and log file generation to god binary for daemon mode
116 * Add God.load to do glob enabled loading
117 * Add -V option to god binary for detailed version/build info
119 == 0.2.0 / 2007-07-18
121 * Rewrote innards to use a state and event based lifecycle
122 * Basic support for events via kqueue (bsd/darwin) and netlink/pec (linux) [kevinclark]
123 * Added advanced syntax (simple syntax calls advanced api underneath)
124 * Condition returns have changed meaning. With simple syntax, a true return activates block
125 * Updated http://god.rubyforge.org with updated simple config and new advanced config
127 == 0.1.0 / 2007-07-07
129 * 1 major enhancement
130   * Birthday!