mirror of
https://gitlab.com/manzerbredes/ina260-zmq-publisher.git
synced 2025-04-06 03:46:25 +02:00
Minor changes
This commit is contained in:
parent
47c5bc6d08
commit
bbef37985a
2 changed files with 9 additions and 6 deletions
|
@ -13,19 +13,18 @@ to=$3
|
||||||
# Load configuration
|
# Load configuration
|
||||||
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
wai=$(dirname $(readlink -f "$0")) # Current script directory
|
||||||
source ${wai}/config.mk
|
source ${wai}/config.mk
|
||||||
|
source ${wai}/clusterman.sh.conf
|
||||||
|
|
||||||
# Compute intervals
|
# Compute intervals
|
||||||
ifrom=$(echo $from $LOG_INTERVAL | awk '{print($1-($1%$2))}')
|
ifrom=$(echo $from $LOG_INTERVAL | awk '{print($1-($1%$2))}')
|
||||||
ito=$(echo $to $LOG_INTERVAL | awk '{print($1-($1%$2))}')
|
ito=$(echo $to $LOG_INTERVAL | awk '{print($1-($1%$2))}')
|
||||||
|
|
||||||
# Search for power measurements
|
# Search for power measurements
|
||||||
nfolder=$(readlink -f ${wai}/${SUBSCRIBER_DIR}/$key/) # Node Folder
|
nfolder=$(readlink -f ${wai}/${SUBSCRIBER_DIR}/${nodes[$key]}/) # Node Folder
|
||||||
[ ! -d "$nfolder" ] && { echo "Node \"$key\" has not power measurements."; exit 2; }
|
[ ! -d "$nfolder" ] && { echo "Node \"$key\" has not power measurements."; exit 2; }
|
||||||
cfolder=${nfolder}/$(ls $nfolder/|head -n1)/ # Client FOlder
|
|
||||||
[ ! -d "$cfolder" ] && { echo "Node \"$key\" has no client folder yet."; exit 3; }
|
|
||||||
# Set from file and to file
|
# Set from file and to file
|
||||||
ffile=${cfolder}/$ifrom
|
ffile=${nfolder}/$ifrom
|
||||||
tfile=${cfolder}/$ito
|
tfile=${nfolder}/$ito
|
||||||
[ ! -f "$ffile" ] && { echo "Node power measurements starting at $2."; exit 4; }
|
[ ! -f "$ffile" ] && { echo "Node power measurements starting at $2."; exit 4; }
|
||||||
[ ! -f "$tfile" ] && { echo "Node power measurements up to $3."; exit 5; }
|
[ ! -f "$tfile" ] && { echo "Node power measurements up to $3."; exit 5; }
|
||||||
# Give files to the user
|
# Give files to the user
|
||||||
|
@ -33,7 +32,7 @@ missings=0
|
||||||
header=0
|
header=0
|
||||||
for interval in $(seq $ifrom $LOG_INTERVAL $ito)
|
for interval in $(seq $ifrom $LOG_INTERVAL $ito)
|
||||||
do
|
do
|
||||||
file=${cfolder}/${interval}
|
file=${nfolder}/${interval}
|
||||||
if [ ! -f "$file" ]
|
if [ ! -f "$file" ]
|
||||||
then
|
then
|
||||||
missings=$(( missings + 1 ))
|
missings=$(( missings + 1 ))
|
||||||
|
|
4
.clusterman.sh.conf
Normal file
4
.clusterman.sh.conf
Normal file
|
@ -0,0 +1,4 @@
|
||||||
|
#!Usr/bin/env bash
|
||||||
|
|
||||||
|
declare -A nodes
|
||||||
|
nodes["testbed-node-1"]="bbb1/2-0041"
|
Loading…
Add table
Reference in a new issue