Skip to main content

SlurmTop Logo

A terminal UI for monitoring Slurm HPC jobs — like htop for your cluster.

SlurmTop gives you a live overview of your running and past jobs, lets you read stdout/stderr logs, inspect resource usage, monitor CPU and GPU activity on compute nodes, cancel or resubmit jobs, and more — all from a single terminal.

+-----------------------+------------------------------------------------+
| Active Jobs           | Job Details  [stdout] [stderr] [cpu] [gpu]     |
|  2465501  train  0:42 |  Epoch 12/100, loss=0.0342                     |
|  2465499  eval   1:15 |  Epoch 13/100, loss=0.0318                     |
|  2465485  vs     3:22 |  ...                                           |
+-----------------------+                                                |
| Terminated Jobs       +------------------------------------------------+
|  2465400  prep  COMP  | Job Metadata [Resources] [Submission] [Raw]    |
|  2465312  sweep FAIL  |  Partition: gpu    Nodes: 1   CPUs: 8          |
|  2465301  test  COMP  |  GPU: gres/gpu:rtx2080ti=1   Memory: 40G      |
+-----------------------+------------------------------------------------+

Installation

Requires Python 3.10+ and access to Slurm CLI tools (squeue, sacct, scontrol).

# Clone the repository
git clone https://github.com/your-org/slurmtop.git
cd slurmtop

# Install with uv (recommended)
uv pip install -e .

# Or with pip
pip install -e .

You can also install the repository directly from remote via:

# Install via pip into local python environment
pip install git+ssh://git@github.com/RobinU434/SlurmTop.git

Quick Start

# Run on a cluster login node
slurmtop

# Run from your local machine, monitoring a remote cluster
slurmtop --remote user@login.hpc.edu

# Customize refresh rate and time window
slurmtop --refresh 3 --days 14

# Disable auto-refresh (manual refresh only with 'r')
slurmtop --refresh off

Layout

SlurmTop has a four-panel layout:

Panel Position Content
Active Jobs Top-left Running and pending jobs from squeue
Terminated Jobs Bottom-left Completed, failed, timed-out, and cancelled jobs from sacct
Job Details Top-right (2/3) Tabbed view: stdout, stderr, live CPU, live GPU, resource stats
Job Metadata Middle-right Tabbed view: Resources, Submission info, Raw scontrol output
Command Log Bottom-right Timestamped log of actions and responses

A cluster overview bar at the top shows your running/pending counts and partition availability.

Key Bindings

Navigation

Key Action
Up / Down Navigate job list (wraps between Active and Terminated). The selected job's details update immediately.
Tab / Shift+Tab Switch focus between right-side panels
Left / Right Switch focus between right-side panels
[ / ] Switch tabs in the Job Details panel (stdout, stderr, cpu, gpu, stats)
( / ) Switch tabs in the Job Metadata panel (Resources, Submission, Raw)
Escape Close search bar

Actions

Key Action
/ Open search bar — filter jobs by ID, name, or partition. Press Escape to close and clear
m Bookmark / unbookmark the selected job. Bookmarked jobs show a ★ prefix and are pinned to the top of their table
c Cancel the selected job (with confirmation prompt)
Shift+C Force cancel — sends SIGKILL immediately, no confirmation
Ctrl+V Toggle multi-select mode (vim-visual style). Use Up/Down to extend the selection range from an anchor row, then press c or Shift+C to cancel all selected jobs. Press Ctrl+V again to exit. Detail panels freeze on the last single-selected job.
s Resubmit a terminated job using its original sbatch script (with confirmation)
b View the job's sbatch script, read-only, in your editor
e Open the job's stdout log in an external editor (suspends TUI)
Shift+E Open the job's stderr log in an external editor
o SSH to the selected job's compute node. Suspends the TUI; type exit to return
, Edit config file (~/.config/slurmtop/config.toml) in your editor
r Force refresh all job data
? Toggle the help screen (also closes with Escape)
q Quit

Detail Tabs

Select a job in either table (Up/Down) and use [ / ] to switch between these tabs:

stdout / stderr

Displays the tail of the job's standard output and error log files. SlurmTop finds log files by reading StdOut / StdErr from scontrol show job. For older jobs no longer in Slurm's memory, it checks the log path cache first (see Log Path Cache), then falls back to searching the working directory for common patterns (slurm-JOBID.out, JOBNAME-JOBID.out, logs/ subdirectory, etc).

cpu

Live process listing from the job's compute node, similar to top. Shows PID, %CPU, %MEM, RSS, VSZ, elapsed time, and command name. Auto-refreshes while the tab is active.

gpu

Live nvidia-smi output showing only the GPUs allocated to the selected job. Uses srun --overlap --jobid to run nvidia-smi inside the job's cgroup, so GPU visibility is automatically restricted to the job's allocation. The header shows CUDA_VISIBLE_DEVICES for confirmation. Auto-refreshes while the tab is active.

stats

Accounting statistics from sstat (running jobs) and sacct:

  • CPU — average CPU time, total CPU, frequency, wall time
  • Memory — requested, max/average RSS, max/average VM size, peak node/task
  • GPU — allocated GPU count and type from TRES
  • Disk I/O — average and max read/write

Metadata Tabs

Use ( / ) to switch between these tabs:

Resources

Partition, node count, CPUs, memory, GPU/GRES allocation, TRES, time limit, runtime, account, and QoS.

Submission

Submit time, start/end times, working directory, stdout/stderr paths, and the original submit command.

Raw

All key-value pairs from scontrol show job or sacct, displayed verbatim.

Visual Features

Column Width Limits

Job names and partition names are truncated to 16 characters by default (with when truncated). This keeps the tables compact. Configure via config.toml:

max_name_width = 20       # wider name column
max_partition_width = 10  # narrower partition column

Set to 0 for unlimited width.

State Abbreviations

For compact displays, enable abbreviated state names in the Terminated Jobs table:

abbreviate_states = true
Full State Abbreviation
COMPLETED COMP
FAILED FAIL
TIMEOUT TIME
CANCELLED CAN
OUT_OF_MEMORY OOM
NODE_FAIL NFAIL
PREEMPTED PREEMPT

Color-Coded Partitions

Each partition is assigned a consistent color across both job tables. Colors are deterministic (based on the partition name) so they stay stable across sessions. You can override colors in the config file (see Configuration).

Color-Coded Job States

Active Jobs (Job ID column):

State Color
RUNNING Green
PENDING Yellow
COMPLETING Orange
SUSPENDED, REQUEUED Dim

Terminated Jobs (State column):

State Color
COMPLETED Green
FAILED, OUT_OF_MEMORY, NODE_FAIL Red
TIMEOUT Yellow
CANCELLED Dim grey
PREEMPTED Dim yellow

Cluster Overview Bar

The top line shows a summary of your jobs and cluster partitions:

mot824  5 running  2 pending    gpu:10/5/1/16  cpu:42/58/0/100

Partition format is name:A/I/O/T:

Field Meaning
A Allocated — nodes currently running jobs
I Idle — nodes available for new jobs
O Other — nodes that are down, drained, or in maintenance
T Total — total nodes in the partition

Bookmarks

Press m to bookmark any job. Bookmarked jobs are pinned to the top of their table with a ★ prefix. Bookmarks persist for the duration of the session.

View sbatch Script

Press b to open the selected job's sbatch script in your editor, read-only. Works on pending, running, and terminated jobs. The TUI suspends while the editor is open.

With vim the file opens via -R, so you can still :w /some/other/path to keep a copy — useful when the original script has been changed since the job was submitted. Editors without a known read-only flag open writable, and the Command Log says so.

The script text is archived, not just its path, so your copy stays readable even if you later edit, move, or delete the original file. Archiving happens automatically whenever you select a job that Slurm still knows about, and on demand when you press b. Array tasks share one script: 123_11, 123_[1-40], and 123 all resolve to the same file.

Slurm only keeps a job's script until MinJobAge seconds after it ends — often just 300. A job that finished before SlurmTop ever saw it has no archived copy and Slurm can no longer produce one; pressing b reports that the script is unavailable. See Job Cache for the cache location and script_cache_dir.

Open Logs in Editor

Press e to open the selected job's stdout log in an external text editor, or Shift+E for stderr. The TUI suspends while the editor is open and resumes when you close it.

The default editor is vim. To change it, set editor in your config file:

editor = "nano"    # or "vim", "less", "code", etc.

In remote mode, the log file is first copied to a local temp file via scp, opened in the editor, and cleaned up when the editor closes.

If the configured editor is not found on your system, an error is shown in the Command Log (e.g., editor 'code' not found — set 'editor' in config.toml).

Job Completion Notifications

When a running job finishes (completes, fails, times out, etc.), SlurmTop:

  • Rings the terminal bell
  • Attempts a desktop notification via notify-send (Linux)
  • Logs the event in the Command Log panel

Command Log

The bottom-right panel shows a timestamped log of all actions and their results:

14:23:05 refresh
  >>> complete
14:23:12 scancel 2465400
  >>> Job 2465400 cancelled.
14:23:30 ssh galvani-cn109
  >>> session to galvani-cn109 closed
14:24:01 job completed
  >>> 2465485 COMPLETED

Job Cache

Slurm forgets a job shortly after it ends — MinJobAge seconds, often just 300. Until then, scontrol can tell you the job's exact StdOut/StdErr paths and hand you its sbatch script; afterwards both are gone and only sacct remains, which knows neither.

SlurmTop caches both while a job is still live, so they survive the job.

Check your cluster's window with:

scontrol show config | grep MinJobAge

Batch scripts

Archived as text under the base job ID, so all tasks of an array share one file. See View sbatch Script for the b keybinding and its limitations.

Log paths

Log paths are cached the same way, into log_cache.json, whenever you select a job that Slurm still knows about. For older jobs SlurmTop falls back to guessing from filename patterns (slurm-JOBID.out, JOBNAME-JOBID.out, logs/ subdirectories), which can fail if you use custom --output/--error names.

Resubmit fallback

Resubmit (s) runs the job's original sbatch command. If the script file it names no longer exists, SlurmTop substitutes the archived copy and says so in the Command Log. Not available in remote mode, where the archive is local but sbatch runs on the login node.

Cache files

File Purpose
~/.config/slurmtop/log_cache.json Cached StdOut/StdErr paths, work dir, and submit command per job ID
~/.config/slurmtop/scripts/<job_id>.sh Archived sbatch scripts, mode 600 (they often contain tokens and private paths)

Both are pruned on startup using cache_max_age_days (default 30, null to never prune). Set script_cache_dir in config.toml to archive scripts somewhere else.

Earlier versions shipped a slurmtop-daemon that polled for log paths in the background. It has been removed — caching now happens inline. A leftover ~/.config/slurmtop/daemon.pid is inert and can be deleted.

Remote Mode

Run SlurmTop on your local machine while monitoring a remote cluster:

slurmtop --remote user@login.hpc.edu

All Slurm commands (squeue, sacct, scontrol, sstat, scancel, sbatch) are transparently tunneled via SSH. Log files are read remotely. The GPU tab uses srun --overlap on the remote cluster. The SSH-to-node feature (o) connects through the login node via ProxyJump.

When using --remote user@host, the username is automatically used as the default --user for Slurm queries (no need to specify both).

Login node warning: If the local or remote hostname contains "login", SlurmTop shows a warning popup reminding you to be mindful of resource usage on shared login nodes.

For best performance, configure SSH connection multiplexing in ~/.ssh/config:

Host login.hpc.edu
    ControlMaster auto
    ControlPath ~/.ssh/sockets/%r@%h-%p
    ControlPersist 600

Configuration

SlurmTop stores persistent settings in ~/.config/slurmtop/config.toml (respects $XDG_CONFIG_HOME). The file is created automatically when you use --partition-order, or you can create it by hand.

Example config file

# All CLI arguments can be set here as defaults.
# CLI arguments always override config file values.
# When a CLI arg overrides a config value, it is shown in the Command Log.

refresh = 3.0            # -r/--refresh: auto-refresh interval in seconds (0 = off)
days = 14                # -d/--days: how many days back for terminated jobs
user = "myuser"          # -u/--user: Slurm user to monitor
partition = ""           # -p/--partition: filter by partition (empty = all)
no_gpu = false           # --no-gpu: disable GPU monitoring tab
no_live = false          # --no-live: disable live CPU/GPU monitoring
remote = ""              # -H/--remote: SSH target for remote mode
editor = "vim"           # text editor for viewing logs ("vim", "nano", "less", etc.)

# Column display settings
max_name_width = 16      # max characters for job name column (0 = unlimited)
max_partition_width = 16 # max characters for partition column (0 = unlimited)
abbreviate_states = false # use short state names: DONE, FAIL, TIME, CAN, OOM, ...

# Cache settings
# cache_max_age_days = 30  # auto-delete cached job info older than N days
                           # set to null to never delete (keep forever)
# script_cache_dir = ""    # where archived sbatch scripts live
                           # (default: ~/.config/slurmtop/scripts)

# Partition display order in the cluster bar.
# Partitions not listed appear after these in their default order.
# Set via CLI: slurmtop --partition-order gpu,cpu,fat
partition_order = ["gpu", "cpu", "fat"]

# Custom partition colors in the job tables.
# Overrides the automatic hash-based coloring.
# Valid color names: cyan, magenta, yellow, green, blue, red,
# bright_cyan, bright_magenta, bright_green, white, dim, bold,
# or any Rich color (e.g. "dark_orange", "grey50").
[partition_colors]
gpu = "green"
cpu = "cyan"
fat = "magenta"
debug = "dim"

CLI vs config file

All CLI arguments can be set in the config file. The precedence is:

CLI argument > config file > built-in default

When a CLI argument overrides a config file value that differs, the override is logged in the Command Log panel at startup.

Partition order

To set a custom partition order for the cluster bar:

# Set once — automatically saved for future sessions
slurmtop --partition-order gpu,cpu,fat

CLI Reference

slurmtop

slurmtop [-h] [-r SEC] [-d N] [-u USER] [-p PARTITION]
         [--no-gpu] [--no-live] [--partition-order P1,P2,...] [-H HOST]
Flag Description Default
-r, --refresh Auto-refresh interval in seconds. Set to 0 or off to disable. 5
-d, --days How many days back to show terminated jobs 7
-u, --user Slurm user to monitor. When --remote user@host is used, defaults to the remote username. $USER
-p, --partition Filter jobs by partition (all)
--no-gpu Disable the GPU monitoring tab off
--no-live Disable live CPU and GPU monitoring (no SSH/srun to nodes) off
--partition-order Comma-separated partition display order for cluster bar (sinfo order)
-H, --remote SSH target for remote mode (e.g. user@login.hpc.edu) (local)

Requirements

  • Python 3.10+
  • Slurm CLI tools: squeue, sacct, scontrol, sstat, scancel
  • Textual (installed automatically)
  • For GPU monitoring: nvidia-smi on compute nodes, srun --overlap support
  • For remote mode: SSH access to the cluster login node

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

lazyslurm_py-0.1.0.tar.gz (208.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

lazyslurm_py-0.1.0-py3-none-any.whl (44.1 kB view details)

Uploaded Python 3

File details

Details for the file lazyslurm_py-0.1.0.tar.gz.

File metadata

  • Download URL: lazyslurm_py-0.1.0.tar.gz
  • Upload date:
  • Size: 208.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"AlmaLinux","version":"8.10","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for lazyslurm_py-0.1.0.tar.gz
Algorithm Hash digest
SHA256 96be7e6a2966bfac51712490c6fe28d160dc1b3edb41163fea511e55b32f6318
MD5 be4c7e79ccfff565c66e5de35c46832b
BLAKE2b-256 0c95e472174b1b110e0b76cd3a827577fee8c74cecd625fd8d76adbfa7b7155a

See more details on using hashes here.

File details

Details for the file lazyslurm_py-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: lazyslurm_py-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 44.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.2 {"installer":{"name":"uv","version":"0.11.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"AlmaLinux","version":"8.10","id":null,"libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for lazyslurm_py-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 dc26586951a4c5d339c25fbdc741fca806c3828017786f564a3b6cfa1de54e0d
MD5 2629eaa239799d5fb6e1e36e5b04824a
BLAKE2b-256 8ea06f2f38c782a2f53452dc717e6e8807b4d85e2af174d0034f1ae35ae5cee2

See more details on using hashes here.

Release history Release notifications | RSS feed

0.3.0

2 files

0.2.1

2 files

0.2.0

2 files

This release

0.1.0 This release

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page