SACCT: Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
mNo edit summary |
||
| Line 3: | Line 3: | ||
For instance at the login screen the command: sacct -a gives the following result: | For instance at the login screen the command: sacct -a gives the following result: | ||
<syntaxhighlight lang="bash"> | |||
user001@login200:~$ sacct -a | |||
[[File:sacct capture.jpg]] | </syntaxhighlight>[[File:sacct capture.jpg]] | ||
It is a standard view to see all the users jobs of that day. | It is a standard view to see all the users jobs of that day. | ||
Latest revision as of 07:33, 14 April 2026
The command sacct is meant to show your usage of Anunna.
For instance at the login screen the command: sacct -a gives the following result:
user001@login200:~$ sacct -a
It is a standard view to see all the users jobs of that day.
Better is to modify this command with special parameters to see what you are using from Anunna.
user001@login200:~$ sacct -P -X --delimiter=',' -S 2026-01-01 -E 2026-02-01 \
--format=comment%15,User,Partition%20,JobID,JobName,ncpus,nnodes,NodeList,Start,alloccpus,cputime%12,cputimeraw,state > usage_report_$(date -I).csv
The csv-file can be uploaded in Excel. This gives you the next overview.
Cputimeraw is the time of cpu-usage in seconds. The parameters "-S 2026-01-01 -E 2026-02-01" give you the start date and the end date of period you want to present.

