Changeset 8229 for lang/perl/App-MadEye

Show
Ignore:
Timestamp:
03/21/08 10:40:14 (9 months ago)
Author:
tokuhirom
Message:

lang/perl/App-MadEye?: Checking in changes prior to tagging of version 0.03. Changelog diff is:

=== Changes
==================================================================
--- Changes (revision 10704)
+++ Changes (local)
@@ -1,5 +1,26 @@

Revision history for Perl extension App::MadEye?


+0.03
+
+ WARNINGS: this release has some drastic changes..
+
+ (FEATURE)
+ - validate schema with Kwalify
+ - added new plugins
+ - Notify::IRC
+ - Check::Flock
+ - Agent::MySQLSlave
+ - Agent::SNMP::Disk
+ - Agent::SNMP::Process
+ - use Log::Dispatch, a pluggable logger.
+
+ (BUG FIX)
+ - Worker::Gearman: kill zombie.
+
+ (MISC)
+ - added documents.
+ - some variables are now configurable
+

0.02


  • oops. 0.01 is broken... version 0.01 does not contains madeye.pl...(REPORTED BY hirose31++)
Location:
lang/perl/App-MadEye/trunk
Files:
4 modified

Legend:

Unmodified
Added
Removed
  • lang/perl/App-MadEye/trunk/Changes

    r7757 r8229  
    11Revision history for Perl extension App::MadEye 
     2 
     30.03 
     4 
     5    WARNINGS: this release has some drastic changes.. 
     6 
     7    (FEATURE) 
     8    - validate schema with Kwalify 
     9    - added new plugins 
     10        - Notify::IRC 
     11        - Check::Flock 
     12        - Agent::MySQLSlave 
     13        - Agent::SNMP::Disk 
     14        - Agent::SNMP::Process 
     15        - use Log::Dispatch, a pluggable logger. 
     16 
     17    (BUG FIX) 
     18    - Worker::Gearman: kill zombie. 
     19 
     20    (MISC) 
     21    - added documents. 
     22    - some variables are now configurable 
    223 
    3240.02 
  • lang/perl/App-MadEye/trunk/MANIFEST

    r7755 r8229  
    2626lib/App/MadEye/Plugin/Agent/HTTP.pm 
    2727lib/App/MadEye/Plugin/Agent/Mogilefsd.pm 
     28lib/App/MadEye/Plugin/Agent/MySQLSlave.pm 
     29lib/App/MadEye/Plugin/Agent/Perlbal.pm 
    2830lib/App/MadEye/Plugin/Agent/Ping.pm 
    2931lib/App/MadEye/Plugin/Agent/POP3S.pm 
     
    3133lib/App/MadEye/Plugin/Agent/SMTP.pm 
    3234lib/App/MadEye/Plugin/Agent/SMTPTLS.pm 
     35lib/App/MadEye/Plugin/Agent/SNMP/Disk.pm 
     36lib/App/MadEye/Plugin/Agent/SNMP/Process.pm 
     37lib/App/MadEye/Plugin/Base.pm 
     38lib/App/MadEye/Plugin/Check/Flock.pm 
    3339lib/App/MadEye/Plugin/Check/Network.pm 
    3440lib/App/MadEye/Plugin/Check/User.pm 
    3541lib/App/MadEye/Plugin/Notify/Debug.pm 
    3642lib/App/MadEye/Plugin/Notify/Email.pm 
     43lib/App/MadEye/Plugin/Notify/IKC.pm 
    3744lib/App/MadEye/Plugin/Worker/Gearman.pm 
    3845lib/App/MadEye/Plugin/Worker/Simple.pm 
  • lang/perl/App-MadEye/trunk/config.yaml

    r8029 r8229  
    1010       - http://google.com/ 
    1111 
    12 # - module: Worker::Simple 
     12  - module: Worker::Simple 
     13    config: 
     14      task_timeout: 4 
     15 
     16# - module: Worker::Gearman 
    1317#   config: 
    14 #     timeout: 1 
    15  
    16   - module: Worker::Gearman 
    17     config: 
    18       fork_num: 3 
    19       task_timeout: 20 
    20       child_timeout: 7 
    21       gearman_servers: 
    22         - 127.0.0.1 
     18#     fork_num: 3 
     19#     task_timeout: 20 
     20#     child_timeout: 40 
     21#     gearman_servers: 
     22#       - 127.0.0.1 
    2323 
    2424# - module: Agent::HTTP 
  • lang/perl/App-MadEye/trunk/lib/App/MadEye.pm

    r8145 r8229  
    33use warnings; 
    44use 5.00800; 
    5 our $VERSION = '0.02'; 
     5our $VERSION = '0.03'; 
    66use Class::Component; 
    77use Params::Validate;