#!/bin/bash

#--------------------------------------------------------------------------
# Command:   hscUsdMonitor
#
# Purpose:   Starts the utilization snapshot data monitor
#
# Usage:    hscUsdMonitor
#--------------------------------------------------------------------------

while true
do
  /opt/hsc/bin/utilsnapmoni 4
  if [ $? -ne 0 ]; then
     sleep 120
  fi
done

exit 0
