blob: 0cec8dc1288084c9d62a3c096eb8e6c807c60430 [file] [log] [blame]
#!/bin/sh
#/*
# * Licensed to the Apache Software Foundation (ASF) under one
# * or more contributor license agreements. See the NOTICE file
# * distributed with this work for additional information
# * regarding copyright ownership. The ASF licenses this file
# * to you under the Apache License, Version 2.0 (the
# * "License"); you may not use this file except in compliance
# * with the License. You may obtain a copy of the License at
# *
# * http://www.apache.org/licenses/LICENSE-2.0
# *
# * Unless required by applicable law or agreed to in writing, software
# * distributed under the License is distributed on an "AS IS" BASIS,
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# * See the License for the specific language governing permissions and
# * limitations under the License.
# */
cd `dirname ${0}`;
# Get all our common constants etc. set up.
# Pulls in gangliaLib.sh as well, so we can skip pulling it in again.
source ./gmondLib.sh;
function checkGmondForCluster()
{
gmondClusterName=${1};
gmondCoreConfFileName=`getGmondCoreConfFileName ${gmondClusterName}`;
# Skip over (purported) Clusters that don't have their core conf file present.
if [ -e "${gmondCoreConfFileName}" ]
then
gmondRunningPid=`getGmondRunningPid ${gmondClusterName}`;
if [ -n "${gmondRunningPid}" ]
then
echo "${GMOND_BIN} for cluster ${gmondClusterName} running with PID ${gmondRunningPid}";
else
echo "Failed to find running ${GMOND_BIN} for cluster ${gmondClusterName}";
exit 1;
fi
fi
}
# main()
gmondClusterName=${1};
if [ "x" == "x${gmondClusterName}" ]
then
# No ${gmondClusterName} passed in as command-line arg, so check
# all the gmonds we know about.
for gmondClusterName in `getConfiguredGangliaClusterNames`
do
checkGmondForCluster ${gmondClusterName};
done
else
# Just check the one ${gmondClusterName} that was asked for.
checkGmondForCluster ${gmondClusterName};
fi