Config the job ID mask
By default, when you see job monitor, the job names are created following this rule:
[job-environment]-[sequence-number]
This can be changed by editing the configuration variable config.job.mask
under Admin, Advanced Settings
.
Here, you can use internal variables of the job. For example, to show the id of the job following by the environment, you can configure the variable like this:
${mid}-${bl}
Equally, to set the old-style job-naming, ie N.TEST-0000000123
use the following
job mask:
${prefix}.${bl}-${pad(0,10,id)}
The id
is the rolling (always increasing for all jobs) job ID. pad()
will add
zeroes to the left of the id until it completes a length of 10
.
Please refer to the Variable Parsing guide for more details on how to customize variables parsed in a string like the job mask.