Update helper_stats_graphs.yaml

This commit is contained in:
Alexandre
2023-03-21 16:11:22 +01:00
committed by GitHub
parent 021e5712c2
commit 4854654026

View File

@@ -150,8 +150,15 @@ jobs:
sed -i "2d" Stats3 sed -i "2d" Stats3
# Inverse file # Inverse file
gawk -i inplace '{for(i=NF;i>1;i--)printf "%s ",$i;printf "%s",$1;print ""}' Stats3 gawk -i inplace '{for(i=NF;i>1;i--)printf "%s ",$i;printf "%s",$1;print ""}' Stats3
# For each addon
for line in $(awk '{ print $1 }' Stats3); do
TITLE="${line%% *}"
FOLDER="$(grep -rl "ghcr.io/alexbelgium/$TITLE-" . | xargs -r dirname)"
# If non null
if [[ ${#FOLDER} -gt 2 ]]; then
cp Stats3 StatsTmp
sed -i "/$TITLE/!d" StatsTmp
# Transpose data # Transpose data
echo "1"
awk ' awk '
{ {
for (i=1; i<=NF; i++) { for (i=1; i<=NF; i++) {
@@ -167,18 +174,7 @@ jobs:
} }
print str print str
} }
}' Stats3 > StatsTmp && mv StatsTmp Stats3 }' StatsTmp > StatsTmp2 && mv StatsTmp2 StatsTmp
# For each addon, create graph
echo "3"
for line in $(head -1 Stats3); do
TITLE="${line%% *}"
FOLDER="$(grep -rl "ghcr.io/alexbelgium/$TITLE-" . | xargs dirname)" || echo "$TITLE not found"
# if folder exists
if [ -d "$FOLDER" ]; then
echo "$TITLE"
head -1 Stats3 > StatsTmp
grep "$TITLE" Stats3 >> StatsTmp
cat StatsTmp
# Plot graph # Plot graph
( gnuplot-nox -persist <<-EOFMarker ( gnuplot-nox -persist <<-EOFMarker
set title "$TITLE" set title "$TITLE"