--- projects/cms/source/reports/php/latest/latest_display.inc.php 2001/03/08 21:23:25 1.1 +++ projects/cms/source/reports/php/latest/latest_display.inc.php 2001/03/08 22:13:16 1.2 @@ -3,6 +3,54 @@ # Display the following data. showStat("Machine Name", "packet.attributes.machine_name", $input); +showStat("I.P. Address", "packet.attributes.ip", $input); + +printLine(); + +showStat("Operating System Release", "packet.os.release", $input); +showStat("Operating System Version", "packet.os.version", $input); +showStat("Operating System Name", "packet.os.name", $input"); +showStat("System Name", "packet.os.sysname", $input); +showStat("Operating System Platform", "packet.os.platform", $input); + +printLine(); + +showStat("Sleeping Processes", "packet.processes.sleeping", $input); +showStat("Zombie Processes", "packet.processes.zombie", $input); +showStat("Stopped Processes", "packet.processes.stopped", $input); +showStat("CPU Processes", "packet.processes.cpu", $input); +showStat("Total Processes", "packet.processes.total", $input); + +printLine(); + +showStat("Uptime (um... seconds)", "packet.os.uptime", $input); + +printLine(); + +showStat("Last sequence number", "packet.attributes.seq_no", $input); + +printLine(); + +showStat("Number of users", "packet.users.count", $input); +showStat("User list", "packet.users.list", $input); + +printLine(); + +showStat("Load 1", "packet.load.load1", $input); +showStat("Load 5", "packet.load.load5", $input); +showStat("Load 15", "packet.load.load15", $input); + +printLine(); + +showBar("User CPU", "packet.cpu.user", 100, $input); +showBar("Swap CPU", "packet.cpu.swap", 100, $input); +showBar("Idle CPU", "packet.cpu.idle", 100, $input); +showBar("Kernel CPU", "packet.cpu.kernel", 100, $input); +showBar("IO wait CPU", "packet.cpu.iowait", 100, $input); + +printLine(); + +showBar("Swap Free", "packet.swap.free", "packet.swap.total", $input); showBar("Memory Free", "packet.memory.free", "packet.memory.total", $input);