You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for server in $(echo "$results" | jq -r 'keys[] | capture("result_(?<server>.+)_(?<client>.+)") | .server' | sort -u); do
89
+
# Start the row with the server name
90
+
row="$server"
91
+
92
+
# Loop through each client to get the results
93
+
for client in "${clients[@]}"; do
94
+
# Get the result for this server-client combination
95
+
value=$(echo "$results" | jq -r --arg server "$server" --arg client "$client" '.["result_\($server)_\($client)"] // "N/A"') # Default to N/A if no value
0 commit comments