Adding a Job Label Field in Job Composer form

Hi! I have been using OOD to request jobs through HPC, keyword: jobS. I’d love the ability to add a name or nickname to the jobS I’m requesting so I can toggle quickly in between multiple jobs I’m running concurrently. I understand job names can be relabeled in slurm directly after the job has started but it’d be convenient if I could just do this upon job initialization.

Hello and welcome!

I think you may be able to achieve what you are asking already, if you go into your script that you are going to submit and add the following:

...
sbatch --job-name="Your Job Name"
...

Then you will see this job under the Active Jobs with the name ‘Your Job Name’ after you submit.

Was this what you were tyring to accomplish? If not please let me know.