2009-07-28 09:55:54 +00:00
|
|
|
<?php
|
|
|
|
/*
|
|
|
|
* This web page is for "Node status Monitoring" and "Application Status Monitioring",
|
|
|
|
* The user can enable/disable "Node/Application Status Monitoring" from this page.
|
|
|
|
*/
|
2009-09-01 20:25:18 +00:00
|
|
|
if(!isset($TOPDIR)) { $TOPDIR="..";}
|
2009-07-29 06:07:58 +00:00
|
|
|
|
|
|
|
require_once "$TOPDIR/lib/security.php";
|
|
|
|
require_once "$TOPDIR/lib/functions.php";
|
|
|
|
require_once "$TOPDIR/lib/display.php";
|
|
|
|
require_once "$TOPDIR/lib/monitor_display.php";
|
|
|
|
|
2009-07-29 11:30:44 +00:00
|
|
|
//get the name of the selected plug-in
|
|
|
|
$name = $_REQUEST['name'];
|
|
|
|
|
2009-09-10 06:57:06 +00:00
|
|
|
displayNodeAppStatus($name);
|
2009-07-29 06:07:58 +00:00
|
|
|
|
|
|
|
displayStatus();
|
|
|
|
|
2009-07-28 09:55:54 +00:00
|
|
|
?>
|