#!/bin/sh

# Copyright (c) 2012 ken.naruo
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in
# all copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.

# global.cof load
LANG=C;export LANG
SCRIPT_DIR=`dirname $0`
. ${SCRIPT_DIR}/../global.conf

MON_SERVER=$1
if [ "${MON_SERVER}" = "" ];then
 MON_SERVER=ALL
fi

IFCONFIG=/usr/sbin/ifconfig
LINUX=`uname -a | grep Linux`
if [ "${LINUX}" ];then
  IFCONFIG=/sbin/ifconfig
fi


if [ -f /tmp/monitor_stat.tmp ];then
  rm /tmp/monitor_stat.tmp
fi

echo "STATUS LIST" 
for RHOST in `cat ${ROOT}/map.conf`
do  
  SERVER_SET=`echo ${RHOST} | awk '{print $1}'`
  SERVER=`echo ${SERVER_SET} | awk  -F":" '{print $1}'`

  for FILE in `ls -t ${ROOT}/servers/${SERVER}/que/monitor/ | grep -v _error`
  do
    cat  ${ROOT}/servers/${SERVER}/que/monitor/${FILE} | sed -e "s/\$/ ${SERVER}/g" | sort -r -k 3 >> /tmp/monitor_stat.tmp
  done

done

if [ -f /tmp/monitor_stat.tmp ];then
  if [ "${MON_SERVER}" = ALL ];then
    cat /tmp/monitor_stat.tmp | sort -r
    rm /tmp/monitor_stat.tmp
  else
    cat /tmp/monitor_stat.tmp | sort -r | grep ${MON_SERVER}
    rm /tmp/monitor_stat.tmp
  fi
fi

exit 0
