Added sacct parsing for past jobs#37
Conversation
|
thanks! i will have to check this later. btw, you can also already pass |
|
do you think it makes more sense to completely ditch |
|
It does indeed provide info on the running jobs too, however squeue and sacct provide slightly different information such fields stdout,sterr,command,ArrayJobID,ArrayTaskID which are not available in sacct . I think you would get into trouble with array jobs, as these aren't listed in sacct i think, but i have not tested this extensively. |
|
I see, thanks. stdout is the most important field for me, as following the logs is the primary purpose of this tool. |
|
Following the logs does work tho! Because the workdir is provided by sacct. But it might break if you use custom file names, so it's not great. |
|
not robust enough for me. I usually save logs in a central location as to not spam my project root with these files |
Hi,
I wanted to be able to view past completed jobs as well, so I added parsing of sacct to include this.
Not very familiar with rust, so hopefully the code is allright
Thanks