1 |
pjm2 |
1.1 |
<? |
2 |
|
|
|
3 |
|
|
# Display the following data. |
4 |
|
|
|
5 |
pjm2 |
1.6 |
|
6 |
|
|
printLine("Machine identification"); |
7 |
pjm2 |
1.5 |
|
8 |
pjm2 |
1.1 |
showStat("Machine Name", "packet.attributes.machine_name", $input); |
9 |
pjm2 |
1.2 |
showStat("I.P. Address", "packet.attributes.ip", $input); |
10 |
|
|
|
11 |
pjm2 |
1.6 |
|
12 |
|
|
printLine("Load"); |
13 |
|
|
|
14 |
|
|
showStat("Load 1", "packet.load.load1", $input); |
15 |
|
|
showStat("Load 5", "packet.load.load5", $input); |
16 |
|
|
showStat("Load 15", "packet.load.load15", $input); |
17 |
|
|
|
18 |
|
|
|
19 |
|
|
printLine("Memory graphs"); |
20 |
|
|
|
21 |
|
|
showBar("Swap Free", "packet.swap.free", "packet.swap.total", $input); |
22 |
|
|
showBar("Memory Free", "packet.memory.free", "packet.memory.total", $input); |
23 |
|
|
|
24 |
|
|
|
25 |
|
|
printLine("CPU graphs"); |
26 |
|
|
|
27 |
|
|
showBar("User CPU", "packet.cpu.user", 100, $input); |
28 |
|
|
showBar("Swap CPU", "packet.cpu.swap", 100, $input); |
29 |
|
|
showBar("Idle CPU", "packet.cpu.idle", 100, $input); |
30 |
|
|
showBar("Kernel CPU", "packet.cpu.kernel", 100, $input); |
31 |
|
|
showBar("IO wait CPU", "packet.cpu.iowait", 100, $input); |
32 |
|
|
|
33 |
|
|
|
34 |
pjm2 |
1.5 |
printLine("Operating System"); |
35 |
pjm2 |
1.2 |
|
36 |
pjm2 |
1.4 |
showStat("Operating System Release", "packet.os.release", $input); |
37 |
|
|
showStat("Operating System Version", "packet.os.version", $input); |
38 |
|
|
showStat("Operating System Name", "packet.os.name", $input); |
39 |
pjm2 |
1.6 |
showStat("Operating System Platform", "packet.os.platform", $input); |
40 |
pjm2 |
1.4 |
showStat("System Name", "packet.os.sysname", $input); |
41 |
pjm2 |
1.6 |
|
42 |
pjm2 |
1.2 |
|
43 |
pjm2 |
1.5 |
printLine("Processes"); |
44 |
pjm2 |
1.2 |
|
45 |
pjm2 |
1.6 |
showStat("Total Processes", "packet.processes.total", $input); |
46 |
|
|
showStat("CPU Processes", "packet.processes.cpu", $input); |
47 |
pjm2 |
1.2 |
showStat("Sleeping Processes", "packet.processes.sleeping", $input); |
48 |
|
|
showStat("Zombie Processes", "packet.processes.zombie", $input); |
49 |
|
|
showStat("Stopped Processes", "packet.processes.stopped", $input); |
50 |
pjm2 |
1.6 |
|
51 |
pjm2 |
1.2 |
|
52 |
pjm2 |
1.5 |
printLine("Uptime"); |
53 |
pjm2 |
1.2 |
|
54 |
|
|
showStat("Uptime (um... seconds)", "packet.os.uptime", $input); |
55 |
|
|
|
56 |
pjm2 |
1.6 |
|
57 |
|
|
printLine("Packet"); |
58 |
pjm2 |
1.2 |
|
59 |
|
|
showStat("Last sequence number", "packet.attributes.seq_no", $input); |
60 |
|
|
|
61 |
pjm2 |
1.6 |
|
62 |
pjm2 |
1.5 |
printLine("Users"); |
63 |
pjm2 |
1.2 |
|
64 |
|
|
showStat("Number of users", "packet.users.count", $input); |
65 |
|
|
showStat("User list", "packet.users.list", $input); |
66 |
|
|
|
67 |
pjm2 |
1.6 |
?> |