Following link https://slurm.schedmd.com/sacct.html defines Elapsed time as follows:
Elapsed The jobs elapsed time. The format of this fields output is as follows: [DD-[HH:]]MM:SS
Following code returns:
jobId = 1;
sacct -j $jobId --format="Elapsed" | tail -n1 | head -n1
Output: 00:10:11
I won't able to geth the day(DD), which should be 00 on this example. I was hoping to get an output like this: 00:00:10:11
.
[Q] What should I do to see also the used day on Elapsed time output? or day does not exist and hour keep increment after, it covered 24 hours.
Thank you for your valuable time and help.