Last change
on this file since 220 was
207,
checked in by rock, 14 years ago
|
Rename: Change to short name
|
-
Property svn:executable set to
*
|
File size:
2.0 KB
|
Rev | Line | |
---|
[195] | 1 | #!/bin/bash |
---|
| 2 | # Program: |
---|
| 3 | # Check DRBL client status |
---|
| 4 | # Author: |
---|
| 5 | # Jazz, Rock {jazz, rock}@nchc.org.tw |
---|
| 6 | # Version: |
---|
| 7 | # 1.0 |
---|
| 8 | # History: |
---|
| 9 | # 2010/08/29 Rock First release (1.0) |
---|
| 10 | |
---|
| 11 | source /opt/drbl-virt/conf/drbl-virt.conf |
---|
| 12 | source $Work_Path/functions_drbl_virt |
---|
| 13 | |
---|
| 14 | |
---|
| 15 | # [Varliables] |
---|
| 16 | client_IPs=$(cat $Work_Home/etc/IP_HOST_TABLE | grep -v "#" | awk '{print $1}') |
---|
| 17 | drbl_client_file="/tmp/drbl_client_status.$$" |
---|
| 18 | drbl_client_top_file="/tmp/drbl_client_top.$$" |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | # [Main] |
---|
[202] | 22 | drbl_sshkey |
---|
[195] | 23 | for client_IP in $client_IPs |
---|
| 24 | do |
---|
| 25 | # local variables |
---|
[202] | 26 | client_hostname="$(cat $Work_Home/etc/IP_HOST_TABLE | grep -v "#" | grep $client_IP | awk '{print $2}')" |
---|
[195] | 27 | IP_status="online" |
---|
| 28 | client_CPU_core="" |
---|
| 29 | client_Ram="" |
---|
| 30 | client_idle_CPU="" |
---|
| 31 | client_unused_Ram="" |
---|
| 32 | # check network status |
---|
| 33 | ping -c1 -w1 $client_IP > /dev/null 2>&1 || IP_status="offline" |
---|
| 34 | |
---|
| 35 | if [ $IP_status == "online" ]; then |
---|
| 36 | # check CPU core |
---|
| 37 | client_CPU_core=$(ssh -o StrictHostKeyChecking=no $client_IP "cat /proc/cpuinfo |grep processor | wc -l") |
---|
| 38 | # check top information |
---|
[204] | 39 | ssh -o StrictHostKeyChecking=no $client_IP "top -b -n2 -d1 | awk '/^top/{i++}i==2'" > $drbl_client_top_file |
---|
| 40 | IP_VM_right_line="" |
---|
[195] | 41 | client_idle_CPU=$(cat $drbl_client_top_file | grep ^Cpu | sed 's/^.*ni,//' | sed 's/id,.*$//' | awk '{print $1}') |
---|
| 42 | client_Ram=$(cat $drbl_client_top_file | grep ^Mem | sed 's/total.*$//' | sed 's/^Mem://' | awk '{print $1}') |
---|
| 43 | client_unused_Ram=$(cat $drbl_client_top_file | grep ^Mem | sed 's/^.*used,//' | sed 's/free.*$//' | awk '{print $1}') |
---|
[200] | 44 | |
---|
[195] | 45 | fi |
---|
| 46 | |
---|
[197] | 47 | echo "[$client_hostname $client_IP] $IP_status CPU_Core=$client_CPU_core Ram=$client_Ram idle_CPU=$client_idle_CPU unused_Ram=$client_unused_Ram" |
---|
[204] | 48 | #echo "[$client_hostname $client_IP] $IP_status $client_CPU_core $client_Ram $client_idle_CPU $client_unused_Ram" >> $drbl_client_file |
---|
[195] | 49 | |
---|
| 50 | done |
---|
| 51 | |
---|
[199] | 52 | # delete tmp file |
---|
| 53 | rm -f $drbl_client_top_file |
---|
Note: See
TracBrowser
for help on using the repository browser.