Unique values for each iteration
Need
In my script, I need to define a unique value for each iteration (username or email address when creating an account, for example).
Solution
The extra iteration variable is automatically passed to each test.
So all you have to do in the gdsl script is concatenate it with the value in question.
name_${iteration}@greenspector.com
And in the case of monitoring (measurements launched automatically every day)?
In this case, a variable calculated from the current date can also be passed to the launch:
gspt [...] --extra email_suffix="$(date '+%d-%m-%Y-%N')"
Then use it in addition to the iteration variable:
name__${email_suffix}_${iteration}@greenspector.com