Monitor your old Linux devices
Watching Grampa
Create monitoring dashboards with SSH, command-line tools, and Node-RED.
Some excellent technologies and packages are available for monitoring computer hardware. For medium to large systems, the Simple Network Monitoring Protocol (SNMP) approach is usually the preferred solution. However if you have a smaller system with older or low-end servers, some excellent lightweight command-line monitoring utilities can be used instead.
These command-line utilities can be run remotely over Secure Shell (SSH) and the output parsed to return only the key data values, which can then be displayed graphically in a Node-RED web dashboard (Figure 1). In this article, I demonstrate examples that use the iostat
utility [1] to monitor CPU utilization and the lm-sensors package [2] and hddtemp
utility [3] to monitor temperatures on dashboards.
CPU Utilitization
The iostat
utility is part of the sysstat package and is probably already loaded on your older systems. If not, it can be installed by:
sudo apt-get install sysstat
The iostat
utility generates a report for CPU, device, and filesystem utilization. The output from this command can be parsed with some Bash statement to return just the key value of interest.
Listing 1 shows an example of how to grab the fourth line of output with sed (line 7) and parse the %idle value at the end of the line with awk (line 11) to get the sixth string item (line 12).
Listing 1
Parsing iostat Output
01 pete@lubuntu: ~$ iostat -c 02 Linux 4.15.0-72-generic (lubuntu) 2020-05-02 i686 (4 CPU) 03 avg-cpu: %user %nice %system %iowait %steal %idle 04 8.37 0.03 3.33 1.29 86.97 05 06 # Get 4th line of the iostat output 07 pete@lubuntu : ~$ iostat -c | sed -n 4p 08 8.36 0.03 3.33 1.29 0.00 86.99 09 10 # Now get the 6th string 11 pete@lubuntu : ~$ iostat -c | sed -n 4p | awk '{print $6}' 12 87.02
Chip-Based Temperature
To install the hardware sensors in the lm-sensors package, enter:
sudo apt-get install lm-sensors
After the package is installed, the software needs to detect which sensors are available for monitoring:
sudo sensors-detect
This step presents a number of prompts about which sensors need to be scanned. Once the scan step is complete, the sensors command returns results for all the hardware it found.
Specific sensors can be shown with the command:
sensors <chip name>
Listing 2 shows an example of the sensors
command being used to look at the dell_smm-virtual-0 chipset. The CPU temperature value (in line 5) can be parsed with grep
(line 10), which looks for the line that contains "CPU'; then, awk (line 14) outputs the second item of the string (line 15).
Listing 2
Parsing Sensor Data
01 pete@lubuntu: ~$ sensors dell_smm-virtual-0 02 dell_smm-virtual-0 03 Adapter: Virtual device 04 Processor Fan: 2687 RPM 05 CPU: +40.0°C 06 Ambient: +34.0°C 07 SODIMM: +33.0°C 08 09 # Get the CPU temperature 10 pete@lubuntu: ~$ sensors dell_smm-virtual-0 | grep 'CPU' 11 CPU: +40.0°C 12 13 # Return just the temperature 14 pete@lubuntu: ~$ sensors dell_smm-virtual-0 | grep 'CPU' | awk '{print $2}' 15 +40.0°C
Hard Drive Temperature
The hddtemp hard drive temperature monitoring package is installed with:
sudo apt-get install hddtemp
By default, hddtemp requires superuser rights, so to make the results available to non-superusers use:
sudo chmod u+s /usr/sbin/hddtemp
To see the temperature of a hard drive, enter its device name. For example, to see /dev/sda
, use:
$ hddtemp /dev/sda /dev/sda: WDC WD3200BPVT-75JJ5T0: 34°C
Again, you can use the awk
command to parse the output to get just the temperature. For this example, the temperature is the fourth item of the string, so the command displays that value as shown here:
$ hddtemp /dev/sda | awk '{print $4}' 34°C
Buy this article as PDF
(incl. VAT)
Buy Linux Magazine
Subscribe to our Linux Newsletters
Find Linux and Open Source Jobs
Subscribe to our ADMIN Newsletters
Support Our Work
Linux Magazine content is made possible with support from readers like you. Please consider contributing when you’ve found an article to be beneficial.
News
-
Rhino Linux Announces Latest "Quick Update"
If you prefer your Linux distribution to be of the rolling type, Rhino Linux delivers a beautiful and reliable experience.
-
Plasma Desktop Will Soon Ask for Donations
The next iteration of Plasma has reached the soft feature freeze for the 6.2 version and includes a feature that could be divisive.
-
Linux Market Share Hits New High
For the first time, the Linux market share has reached a new high for desktops, and the trend looks like it will continue.
-
LibreOffice 24.8 Delivers New Features
LibreOffice is often considered the de facto standard office suite for the Linux operating system.
-
Deepin 23 Offers Wayland Support and New AI Tool
Deepin has been considered one of the most beautiful desktop operating systems for a long time and the arrival of version 23 has bolstered that reputation.
-
CachyOS Adds Support for System76's COSMIC Desktop
The August 2024 release of CachyOS includes support for the COSMIC desktop as well as some important bits for video.
-
Linux Foundation Adopts OMI to Foster Ethical LLMs
The Open Model Initiative hopes to create community LLMs that rival proprietary models but avoid restrictive licensing that limits usage.
-
Ubuntu 24.10 to Include the Latest Linux Kernel
Ubuntu users have grown accustomed to their favorite distribution shipping with a kernel that's not quite as up-to-date as other distros but that changes with 24.10.
-
Plasma Desktop 6.1.4 Release Includes Improvements and Bug Fixes
The latest release from the KDE team improves the KWin window and composite managers and plenty of fixes.
-
Manjaro Team Tests Immutable Version of its Arch-Based Distribution
If you're a fan of immutable operating systems, you'll be thrilled to know that the Manjaro team is working on an immutable spin that is now available for testing.