Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
Slurm
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
tud-zih-energy
Slurm
Commits
dd23c31e
Commit
dd23c31e
authored
3 years ago
by
Nate Rini
Committed by
Tim Wickberg
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
sacct - add container field
Bug 11380
parent
376f49cb
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
doc/man/man1/sacct.1
+28
-23
28 additions, 23 deletions
doc/man/man1/sacct.1
src/sacct/print.c
+17
-0
17 additions, 0 deletions
src/sacct/print.c
src/sacct/sacct.c
+1
-0
1 addition, 0 deletions
src/sacct/sacct.c
src/sacct/sacct.h
+1
-0
1 addition, 0 deletions
src/sacct/sacct.h
with
47 additions
and
23 deletions
doc/man/man1/sacct.1
+
28
−
23
View file @
dd23c31e
...
...
@@ -142,29 +142,30 @@ Account AdminComment AllocCPUS AllocNodes
AllocTRES AssocID AveCPU AveCPUFreq
AveDiskRead AveDiskWrite AvePages AveRSS
AveVMSize BlockID Cluster Comment
Constraints ConsumedEnergy ConsumedEnergyRaw CPUTime
CPUTimeRAW DBIndex DerivedExitCode Elapsed
ElapsedRaw Eligible End ExitCode
Flags GID Group JobID
JobIDRaw JobName Layout MaxDiskRead
MaxDiskReadNode MaxDiskReadTask MaxDiskWrite MaxDiskWriteNode
MaxDiskWriteTask MaxPages MaxPagesNode MaxPagesTask
MaxRSS MaxRSSNode MaxRSSTask MaxVMSize
MaxVMSizeNode MaxVMSizeTask McsLabel MinCPU
MinCPUNode MinCPUTask NCPUS NNodes
NodeList NTasks Priority Partition
QOS QOSRAW Reason ReqCPUFreq
ReqCPUFreqMin ReqCPUFreqMax ReqCPUFreqGov ReqCPUS
ReqMem ReqNodes ReqTRES Reservation
ReservationId Reserved ResvCPU ResvCPURAW
Start State Submit SubmitLine
Suspended SystemCPU SystemComment Timelimit
TimelimitRaw TotalCPU TRESUsageInAve TRESUsageInMax
TRESUsageInMaxNode TRESUsageInMaxTask TRESUsageInMin TRESUsageInMinNode
TRESUsageInMinTask TRESUsageInTot TRESUsageOutAve TRESUsageOutMax
TRESUsageOutMaxNode TRESUsageOutMaxTask TRESUsageOutMin TRESUsageOutMinNode
TRESUsageOutMinTask TRESUsageOutTot UID User
UserCPU WCKey WCKeyID WorkDir
Constraints Container ConsumedEnergy ConsumedEnergyRaw
CPUTime CPUTimeRAW DBIndex DerivedExitCode
Elapsed ElapsedRaw Eligible End
ExitCode Flags GID Group
JobID JobIDRaw JobName Layout
MaxDiskRead MaxDiskReadNode MaxDiskReadTask MaxDiskWrite
MaxDiskWriteNode MaxDiskWriteTask MaxPages MaxPagesNode
MaxPagesTask MaxRSS MaxRSSNode MaxRSSTask
MaxVMSize MaxVMSizeNode MaxVMSizeTask McsLabel
MinCPU MinCPUNode MinCPUTask NCPUS
NNodes NodeList NTasks Priority
Partition QOS QOSRAW Reason
ReqCPUFreq ReqCPUFreqMin ReqCPUFreqMax ReqCPUFreqGov
ReqCPUS ReqMem ReqNodes ReqTRES
Reservation ReservationId Reserved ResvCPU
ResvCPURAW Start State Submit
SubmitLine Suspended SystemCPU SystemComment
Timelimit TimelimitRaw TotalCPU TRESUsageInAve
TRESUsageInMax TRESUsageInMaxNode TRESUsageInMaxTask TRESUsageInMin
TRESUsageInMinNode TRESUsageInMinTask TRESUsageInTot TRESUsageOutAve
TRESUsageOutMax TRESUsageOutMaxNode TRESUsageOutMaxTask TRESUsageOutMin
TRESUsageOutMinNode TRESUsageOutMinTask TRESUsageOutTot UID
User UserCPU WCKey WCKeyID
WorkDir
.ft 1
.fi
.RE
...
...
@@ -560,6 +561,10 @@ Total energy consumed by all tasks in job, in joules.
Note: Only in case of exclusive job allocation this value
reflects the jobs' real energy consumption.
.TP
\f3Container\fP
Path to OCI Container Bundle requested.
.TP
\f3CPUTime\fP
Time used (Elapsed time * CPU count) by a job or step in HH:MM:SS format.
...
...
This diff is collapsed.
Click to expand it.
src/sacct/print.c
+
17
−
0
View file @
dd23c31e
...
...
@@ -634,6 +634,23 @@ extern void print_fields(type_t type, void *object)
tmp_char
,
(
curr_inx
==
field_count
));
break
;
case
PRINT_CONTAINER
:
switch
(
type
)
{
case
JOB
:
tmp_char
=
job
->
container
;
break
;
case
JOBSTEP
:
tmp_char
=
step
->
container
;
break
;
case
JOBCOMP
:
default:
tmp_char
=
NULL
;
break
;
}
field
->
print_routine
(
field
,
tmp_char
,
(
curr_inx
==
field_count
));
break
;
case
PRINT_CONSUMED_ENERGY
:
switch
(
type
)
{
case
JOB
:
...
...
This diff is collapsed.
Click to expand it.
src/sacct/sacct.c
+
1
−
0
View file @
dd23c31e
...
...
@@ -59,6 +59,7 @@ print_field_t fields[] = {
{
10
,
"Cluster"
,
print_fields_str
,
PRINT_CLUSTER
},
{
14
,
"Comment"
,
print_fields_str
,
PRINT_COMMENT
},
{
19
,
"Constraints"
,
print_fields_str
,
PRINT_CONSTRAINTS
},
{
19
,
"Container"
,
print_fields_str
,
PRINT_CONTAINER
},
{
14
,
"ConsumedEnergy"
,
print_fields_str
,
PRINT_CONSUMED_ENERGY
},
{
17
,
"ConsumedEnergyRaw"
,
print_fields_uint64
,
PRINT_CONSUMED_ENERGY_RAW
},
...
...
This diff is collapsed.
Click to expand it.
src/sacct/sacct.h
+
1
−
0
View file @
dd23c31e
...
...
@@ -105,6 +105,7 @@ typedef enum {
PRINT_CLUSTER
,
PRINT_COMMENT
,
PRINT_CONSTRAINTS
,
PRINT_CONTAINER
,
PRINT_CONSUMED_ENERGY
,
PRINT_CONSUMED_ENERGY_RAW
,
PRINT_CPU_TIME
,
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment