ina260-zmq-publisher/.clusterman.sh

53 lines
1.4 KiB
Bash
Raw Permalink Normal View History

2023-10-28 12:15:07 +02:00
#!/usr/bin/env bash
2023-10-28 14:34:45 +02:00
# This script assumes that the keys used by publishers
# corresponds to the UNIQUE hostname of each monitored node
2023-10-28 12:15:07 +02:00
# Check parameters
[ $# -ne 3 ] && { echo "Usage: $0 <key> <from> <to>"; exit 1; }
# Load parameters
key=$1
from=$2
to=$3
# Load configuration
wai=$(dirname $(readlink -f "$0")) # Current script directory
source ${wai}/config.mk
2023-11-21 11:43:45 +01:00
source ${wai}/.clusterman.sh.conf
2023-10-28 12:15:07 +02:00
2023-10-28 13:17:34 +02:00
# Compute intervals
ifrom=$(echo $from $LOG_INTERVAL | awk '{print($1-($1%$2))}')
ito=$(echo $to $LOG_INTERVAL | awk '{print($1-($1%$2))}')
2023-10-28 14:34:45 +02:00
# Search for power measurements
2023-11-21 11:39:40 +01:00
nfolder=$(readlink -f ${wai}/${SUBSCRIBER_DIR}/${nodes[$key]}/) # Node Folder
2023-10-28 14:34:45 +02:00
[ ! -d "$nfolder" ] && { echo "Node \"$key\" has not power measurements."; exit 2; }
# Set from file and to file
2023-11-21 11:39:40 +01:00
ffile=${nfolder}/$ifrom
tfile=${nfolder}/$ito
2023-12-13 11:12:33 +01:00
[ ! -f "$ffile" ] && { echo "No power measurements starting at $2."; exit 4; }
[ ! -f "$tfile" ] && { echo "No power measurements up to $3."; exit 5; }
2023-10-28 14:34:45 +02:00
# Give files to the user
missings=0
header=0
for interval in $(seq $ifrom $LOG_INTERVAL $ito)
do
2023-11-21 11:39:40 +01:00
file=${nfolder}/${interval}
2023-10-28 14:34:45 +02:00
if [ ! -f "$file" ]
then
missings=$(( missings + 1 ))
continue
fi
# Cat files
if [ $header -eq 0 ]
then
cat $file
header=1
else
tail -n +2 $file
fi
done
# Report missings
[ $missings -gt 0 ] && { echo "Some power measurements are missings ($missings intervals of ${LOG_INTERVAL}s)" >&2; exit 6; }