Re: [slurm-users] [External] Node utilization for 24 hours

2021-09-07 Thread Sid Young
I use this to get "|" separated data that gets pumped into a dashboard: sreport -t percent -T ALL cluster utilization Start=${YESTERDAY}T${QNOW} End=now -P | grep trihpc #output format #trihpc|cpu|14.62%|4.78%|0.00%|77.08%|3.52%|100.00% #trihpc|mem|18.77%|5.57%|0.00%|75.67%|0.00%|100.00% #trihpc

Re: [slurm-users] [External] Node utilization for 24 hours

2021-09-07 Thread Florian Zillner
Hi, you can run sreport like this: sreport cluster AccountUtilizationByUser Start=$(date -d "last month" +%D) End=$(date -d "this month" +%D) or sreport cluster Utilization Start=$(date -d "last month" +%D) End=$(date -d "this month" +%D) and script something around it, to show what you're look