"; print"

$host


"; print"$host_ip
"; print"$timestamp

"; print"
"; // Main Menu if ((!$_POST['dosys'])&(!$_POST['doports'])&(!$_POST['domem'])&(!$_POST['dopart']) &(!$_POST['doint'])&(!$_POST['dovmstat'])&(!$_POST['dops'])&(!$_POST['doservmon'])) { include("main.inc");; } else { //Check Server Cluster Ports if ($_POST['doservmon']) { include("chk_cluster.inc"); chk_cluster(); } // Local Server Information if ($_POST['dosys']) { include("sys.inc"); sys($system,$kernel,$cpu_data,$cache,$now,$uptime); } // Local Active Ports if ($_POST['doports']) { include("localports.inc"); localports(); } // Local Memory Information if ($_POST['domem']) { include("mem.inc"); mem($system); } // Local Partition Data if ($_POST['dopart']) { include("part.inc"); part(); } // Local Interfaces if ($_POST['doint']) { include("interfaces.inc"); interfaces($system); } // vmstat 1 10 if ($_POST['dovmstat']) { include("vm.inc"); vm($system); } // Local Process Status if ($_POST['dops']) { include("ps.inc"); ps($system); } } // End of else // HTML Foot include("footer.inc"); ?>