From 1c686c02cd7e149283d72e931bccc328c7b69034 Mon Sep 17 00:00:00 2001 From: Paul Buetow Date: Sat, 28 Feb 2026 17:28:07 +0200 Subject: Update content for html --- gemfeed/2026-02-29-loadbars-0.13.0-released.html | 245 +++++++++++++++++++++++ 1 file changed, 245 insertions(+) create mode 100644 gemfeed/2026-02-29-loadbars-0.13.0-released.html (limited to 'gemfeed/2026-02-29-loadbars-0.13.0-released.html') diff --git a/gemfeed/2026-02-29-loadbars-0.13.0-released.html b/gemfeed/2026-02-29-loadbars-0.13.0-released.html new file mode 100644 index 00000000..487369a9 --- /dev/null +++ b/gemfeed/2026-02-29-loadbars-0.13.0-released.html @@ -0,0 +1,245 @@ + + + + +Loadbars 0.13.0 released + + + + + +

+Home | Markdown | Gemini +

+

Loadbars 0.13.0 released


+
+Published at 2026-02-29T00:00:00+02:00
+
+Loadbars is a real-time server load monitoring tool. It connects to one or more Linux hosts via SSH and shows CPU, memory, network, load average, and disk I/O as vertical colored bars in an SDL window. You can run it locally or point it at your servers and see what's happening right now — like top or vmstat, but visual and across multiple hosts at once.
+
+Loadbars in action
+
+Loadbars can connect to hundreds of servers in parallel; the GIF above doesn't do it justice — at scale you get a wall of bars that makes it easy to spot outliers and compare hosts at a glance.
+
+Loadbars on Codeberg
+
+

Table of Contents


+
+
+

What Loadbars is (and isn't)


+
+Loadbars shows the current state only. It is not a tool for collecting loads and drawing graphs for later analysis. There is no history, no recording, no database. Tools like Prometheus or Grafana require significant setup before producing results. Loadbars lets you observe the current state immediately: one binary, SSH (or local), and you're done.
+
+
+┌─ Loadbars 0.13.0 ─────────────────────────────────────────┐
+│                                                           │
+│  ████  ████  ████  ██  ████  ████  ████  ██  ░░██  ░░██   │
+│  ████  ████  ████  ██  ████  ████  ████  ██  ░░██  ░░██   │
+│  ████  ████  ████  ██  ████  ████  ████  ██  ░░██  ░░██   │
+│   CPU   cpu0  cpu1  mem  CPU   cpu0  cpu1  mem  net   net │
+│  └──── host1 ────┘      └──── host2 ────┘                 │
+└───────────────────────────────────────────────────────────┘
+
+
+

Use cases


+
+
+

What's new since the Perl version


+
+The original Loadbars (Perl + SDL, ~2010–2013) had CPU, memory, network, ClusterSSH, and a config file. The Go rewrite and subsequent releases added the following. Why each one matters:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+

Core features


+
+

Load average bars


+
+Press 4 or l to toggle. Each host gets a bar: teal fill (1-min load), yellow 1px line (5-min), white 1px line (15-min). Scale: auto (floor 2.0) or fixed with --loadmax N. Press r to reset auto-scale.
+
+

Disk I/O bars


+
+Press 5 to toggle: aggregate (all whole-disk devices per host) → per-device → off. Partitions, loop, ram, zram, and device-mapper are excluded. Purple fill from top = read, darker purple from bottom = write. Extended mode (e) adds a 3px disk-utilization line. Config: diskmode, diskmax, diskaverage. b/x change disk average samples.
+
+

Global reference lines and options


+
+g: global average CPU line (1px red). i: global I/O average line (1px pink). s: host separator lines (1px red). Other options: --maxbarsperrow N, --title, --sshopts, --hasagent. Hotkeys m/n mirror 2/3 for memory and network. Hover over a bar for a tooltip with exact values and host highlight.
+
+

CPU monitoring


+
+CPU usage as vertical stacked bars: System (blue), User (yellow), Nice (green), GuestNice (lime green), Idle (black), IOwait (purple), IRQ/SoftIRQ (white), Guest/Steal (red). Press 1 for aggregate vs. per-core. Press e for extended mode (1px peak line: max system+user over last N samples).
+
+

Memory and network


+
+
+

All hotkeys


+
+
+Key     Action
+─────   ──────────────────────────────────────────────────
+1       Toggle CPU (aggregate / per-core / off)
+2 / m   Toggle memory bars
+3 / n   Toggle network bars
+4 / l   Toggle load average bars
+5       Toggle disk I/O (aggregate / per-device / off)
+r       Reset load and disk auto-scale peaks
+e       Toggle extended (peak line on CPU; disk util line)
+g       Toggle global average CPU line
+i       Toggle global I/O average line
+s       Toggle host separator lines
+h       Print hotkey list to stdout
+q       Quit
+w       Write current settings to ~/.loadbarsrc
+a / y   CPU average samples up / down
+d / c   Net average samples up / down
+b / x   Disk average samples up / down
+f / v   Link scale up / down
+Arrows  Resize window
+
+
+

SSH and config


+
+Connect with public key auth; hosts need bash and /proc (Linux). No agent needed on the remote side.
+
+
+loadbars --hosts server1,server2,server3
+loadbars --hosts root@server1,root@server2
+loadbars servername{01..50}.example.com --showcores 1
+loadbars --cluster production
+
+
+Config: ~/.loadbarsrc (key=value, no --; use # for comments). Any --help option. Press w to save current settings.
+
+

Building and platforms


+
+Go 1.25+ and SDL2. Install SDL2 (e.g. sudo dnf install SDL2-devel on Fedora, brew install sdl2 on macOS), then:
+
+
+mage build
+./loadbars --hosts localhost
+mage install   # to ~/go/bin
+mage test
+
+
+Tested on Fedora Linux 43 and common distros; macOS as client to remote Linux only (no local macOS monitoring — no /proc).
+
+E-Mail your comments to paul@nospam.buetow.org :-)
+
+Other related posts:
+
+2026-02-29 Loadbars 0.13.0 released (You are currently reading this)
+2025-11-02 Perl New Features and Foostats
+2025-09-14 Bash Golf Part 4
+2025-03-05 Sharing on Social Media with Gos v1.0.0
+2024-03-03 A fine Fyne Android app for quickly logging ideas programmed in Go
+2023-12-10 Bash Golf Part 3
+2023-06-01 KISS server monitoring with Gogios
+2022-05-27 Perl is still a great choice
+2022-01-01 Bash Golf Part 2
+2021-11-29 Bash Golf Part 1
+2011-05-07 Perl Daemon (Service Framework)
+2008-06-26 Perl Poetry
+
+Back to the main site
+ + + -- cgit v1.2.3