-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
start work on distributed monitoring
This way, the cpantesters machine can monitor itself and report back to the master for configuration updates and information dumps.
- Loading branch information
Showing
2 changed files
with
54 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
|
||
/********************************************************************** | ||
* CPAN Testers monitoring | ||
* CPAN Testers monitoring -- master | ||
* | ||
* This configuration sends out check configs to the clients so they | ||
* can operate independently if the master goes away. | ||
* | ||
*********************************************************************/ | ||
|
||
/*********************************** | ||
|
@@ -19,6 +23,27 @@ object User "doug" { | |
email = "[email protected]" | ||
} | ||
|
||
/*********************************** | ||
* Zones and Endpoints | ||
**********************************/ | ||
|
||
object Endpoint 'monitor.preaction.me' { | ||
host = '199.38.182.146' | ||
} | ||
|
||
object Endpoint 'cpantesters3.dh.bytemark.co.uk' { | ||
host = '212.110.173.51' | ||
} | ||
|
||
object Zone 'master' { | ||
endpoints = [ 'monitor.preaction.me' ] | ||
} | ||
|
||
object Zone 'clients' { | ||
endpoints = [ 'cpantesters3.dh.bytemark.co.uk' ] | ||
parent = "master" | ||
} | ||
|
||
/*********************************** | ||
* Hosts | ||
**********************************/ | ||
|