god binary status, log, terminate, logging system improvements
[god.git] / History.txt
blobaaadf39c823191230549e209faf6bc4e58d34853
1 == 0.4.0
3 * Major Enhancements
4   * Add the ability for conditions to override transition state (for exceptional cases)
5   * Implement dynamic load of config files while god is running (god load <filename>)
6   * Add ability to save auto-daemonized process output to a log file
7   * Add robust default stop lambda command for auto-daemonized processes (inspired by _eric)
8   * Add status command for god binary (shows status of each watch)
9   * Create proper logger with timestamps
10   * Add log command to god binary to get real time logs for a specific watch from a running god instance
11   * Add terminate command for god binary (stop god and all watches)
12 * Minor Enhancements
13   * Enforce validity of Watches
14   * Enforce that God.init is not called after a Watch
15   * Move pid_file_directory creation and validation to God.start
16   * Remove check for at least one Watch during startup (now that dynamic loading exists)
17 * New Conditions
18   * Tries < PollCondition - triggers after the specified number of tries
19   * Add :notify_when_flapping behavior to check for oscillation [kevinclark]
20   * Add :degrading_lambda condition. [kevinclark]
21     It uses a decaying interval (1/2 rate) for 3 cycles before failing.
22 * Bug Fixes
23   * Use exit!(0) instead of exit! in god binary to exit with code 0 (instead of default -1)
24   * Command line group control fixed
25   * Fix cross-thread return problem (use exit instead)  
27 == 0.3.0 / 2007-08-17
29 * Fix netlink header problem on Ubuntu Edgy [Dan Sully]
30 * Add uid/gid setting for processes [kevinclark]
31 * Add autostart flag for watches so they don't necessarily startup with god [kevinclark]
32 * Change command line call options for god binary to accommodate watch start/stop functionality
33 * Add individual start/stop/restart grace periods for finer grained control
34 * Change default DRb port to 17165 ('god'.to_i(32))
35 * Implement command line control to start/restart/stop/monitor/unmonitor watches/groups by name
36 * Watches can now belong to a group that can be controlled as a whole
37 * Allow god to be installed (sans events) on systems that don't support events
38 * Daemonize and handle PID files for non-daemonizing scripts [kevinclark]
39 * Fix simple mode lifecycle gap
40 * Remove necessity to specify pid_file for conditions
41 * Change config file to use God.init and God.watch directly instead of God.meddle block
42 * Move god binary command logic to main library
43 * Enhance god binary with better reporting
44 * Fix synchronization bug in Timer (reported by Srini Panguluri)
45 * Add Lambda condition for easy custom conditions [Mike Mintz]
46 * Add sugar for numerics (seconds, minutes, kilobytes, megabytes, percent, etc)
47 * Add optional PID and log file generation to god binary for daemon mode
48 * Add God.load to do glob enabled loading
49 * Add -V option to god binary for detailed version/build info
51 == 0.2.0 / 2007-07-18
53 * Rewrote innards to use a state and event based lifecycle
54 * Basic support for events via kqueue (bsd/darwin) and netlink/pec (linux) [kevinclark]
55 * Added advanced syntax (simple syntax calls advanced api underneath)
56 * Condition returns have changed meaning. With simple syntax, a true return activates block
57 * Updated http://god.rubyforge.org with updated simple config and new advanced config
59 == 0.1.0 / 2007-07-07
61 * 1 major enhancement
62   * Birthday!