Job data format
To provide the consistent format of job logs as Frontera, can we use the replace the following command in the https://github.com/TACC/HPCPerfStats/blob/master/hpcperfstats/dbload/sacct_gen.py
Current Format
sacct_command = "/bin/sacct -a -s CA,CD,F,NF,TO -P -X -S " + single_date.strftime("%Y-%m-%d") + " -E " + (single_date + timedelta(1)).strftime("%Y-%m-%d") +" -o JobID,User,Account,Start,End,Submit,Partition,TimeLimit,JobName,State,NNodes,ReqCPUS,NodeList > " + file_name
Desired Format
sacct_command = "/bin/sacct -a -s CA,CD,F,NF,TO -P -X -S " + single_date.strftime("%Y-%m-%d") + " -E " + (single_date + timedelta(1)).strftime("%Y-%m-%d") +" -o JobID,jobidraw,cluster,Partition,qos,Account,group,gid,User,uid,Submit,eligible,Start,End,elapsed,exitcode,state,NNodes,ncpus,ReqCPUS,reqmem,reqtres,alloctres,timelimit,NodeList,JobName > " + file_name
There is no other dependency to collect the above logs.