HiveBrain v1.2.0
Get Started
← Back to all entries
snippetbashTip

sstat — View information about running jobs. More information: <https://slurm.schedmd.com/sstat.html>.

Submitted by: @import:tldr-pages··
0
Viewed 0 times
sstatcommandcliinformationrunningaboutjobsview
linux

Problem

How to use the sstat command: View information about running jobs. More information: <https://slurm.schedmd.com/sstat.html>.

Solution

sstat — View information about running jobs. More information: <https://slurm.schedmd.com/sstat.html>.

Display status information of a comma-separated list of jobs:
sstat {{[-j|--jobs]}} {{job_id}}


Display job ID, average CPU and average virtual memory size of a comma-separated list of jobs, with pipes as column delimiters:
sstat {{[-p|--parsable]}} {{[-j|--jobs]}} {{job_id}} {{[-o|--format]}} {{JobID,AveCPU,AveVMSize}}


Display list of fields available:
sstat {{[-e|--helpformat]}}

Code Snippets

Display status information of a comma-separated list of jobs

sstat {{[-j|--jobs]}} {{job_id}}

Display job ID, average CPU and average virtual memory size of a comma-separated list of jobs, with pipes as column delimiters

sstat {{[-p|--parsable]}} {{[-j|--jobs]}} {{job_id}} {{[-o|--format]}} {{JobID,AveCPU,AveVMSize}}

Display list of fields available

sstat {{[-e|--helpformat]}}

Context

tldr-pages: linux/sstat

Revisions (0)

No revisions yet.