Working on my DIY robot software (Jarvis) in headless mode, i came across a situation where i needed to monitor the system resource such as CPU, battery, memory, network and temperature to measure the "greedy" of my robotic application. Furthermore, as the robot was battery powered, battery safety was a real concern, so i needed something to monitor the battery and shutdown the system when the battery was low to protect it from falling bellow the usable voltage range.
So i've searched for an application/service that allows me to:
None of existing applications/services satisfy all of these requirements, especially, the battery monitoring feature. So i've decided to write a small service that i called sysmond
.
sysmond
is a simple service that monitors and collects system information such as battery, temperature, memory, CPU, and network usage. The service can be used as backend for applications that need to consult system status. Although it is a part of Jarvis ecosystem, sysmond
is a generic service and can be easily adapted to other use cases.
Example of AntOS web application that fetches data from sysmond
and visualize it as real-time graphs on my Jarvis robot system. Detail on the use case can be found here
Sysmond
monitors resource available on the system via the user space sysfs interface provided by the linux kernel.
The service logs all system information to application using a classic file-based interface, it can be configured to log system information to:
Additionally, if configured correctly, the service can monitor the system battery and automatically shutdown the system when the battery is below a configured threshold.
sysmond
is lightweight and can be used in embedded linux system, or single board computer such as Raspberry Pi or Jetson Nano.
The code of the Service is hosted at: https://github.com/lxsang/sysmond
The build process is done using autotool
git clone https://github.com/lxsang/sysmond
cd sysmond
libtoolize
aclocal
autoconf
automake --add-missing
./configure
# build
make
#install
make install
The default configuration file can be found in /etc/sysmond.conf
.
Specific configuration file can be passed to the service using the -f
option.
sysmond -f /path/to/your/sysmond.conf
The battery monitoring feature is helpful for battery-powered systems such as robotic systems.
On these systems, battery voltage reading is performed with the help of an ADC sensor (such as ADS1115).
As the service communicates with the system hardware via the sysfs interface, in order to provide input
to sysmond
, these ADCs sensor should be accessible in user space via this interface. Usually, this is handled
by the device driver.
For example, an ADS1115
linux driver will expose its ADC channel inputs in user space at/sys/class/hwmon/hwmon0/device/*
, if the battery is connected to the chanel 3 of the ADC sensor,
the battery voltage can be easily read with a simple cat
command:
cat sys/class/hwmon/hwmon0/device/in3_input
# value in mV, example 4.1V
4120
This kind of file need to be passed to sysmond
configuration. The following configurations are availabe
# Max usable battery voltage
battery_max_voltage = 12600
# Min usable battery voltage
battery_min_voltage = 10000
# Below this voltage, the battery is unusable and is damaged
battery_cutoff_voltage = 9000
# if voltage divider is used, the R1+R2/ R2 ratio should
# be set to `battery_divide_ratio`, otherwise `1.0`
battery_divide_ratio = 3.36
# Battery input file. If this configuration is empty,
# the battery monitoring feature is disabled
battery_input = /sys/class/hwmon/hwmon2/device/in3_input
# When battery is low the system will be shutdown after n count down
power_off_count_down = 10
# the system will be shutdown if the battery voltage percent
# is below this value after `power_off_count_down` times
power_off_percent = 3
Based on these configuration, sysmond
can approximate the battery voltage percent, it is also able to protect the battery by powering off the system when the battery percent bellow the configured value.
The service approximates the battery percent using the following voltage --> percent asymmetric sigmoidal approximation function:
$$c=101-\frac{101}{(1+\frac{1.33\cdot x}{y}^{4.5\ })^{3}}$$
With \(x=v_{read}-v_{min}\) and \(y=v_{max}-v_{min}\)
This function models the battery consumption during time as the following curve, which is pretty closed to the real battery discharge curve:
# number of cpu cores to monitor, this value should be equal or
# less than the actual number of CPU cores in the system
# CPU usages are fetched from /proc/stat
cpu_core_number = 4
# memory usages are automatically fetch from /proc/meminfo,
# so no configuration needed
# The mount point of the storage should be monitored
disk_mount_point = /
# System temperature information can be found in /sys/devices/virtual/thermal/*
# CPU temperature
cpu_temperature_input=/sys/devices/virtual/thermal/thermal_zone1/temp
# GPU temperature
gpu_temperature_input=/sys/devices/virtual/thermal/thermal_zone2/temp
# List of network interface to monitor
network_interfaces = wlan0,eth0
# Sampling period in ms, example: 2Hz (2 samples per second) should be
sample_period = 500
# Output system info to file
# The output file may be: stdout, a regular file or name pipe, or a unix domain socket
# To print JSON data records to stdout use
data_file_out = stdout
# To send data via unix domain socket use
data_file_out = sock:/path/to/socket/file
# regular file or name pipe
data_file_out = /var/sysmond.log
System information is outputted in JSON format, example:
{
"stamp_sec": 1612363252,
"stamp_usec": 890264,
"battery": 0.000,
"battery_percent": 0.000,
"battery_max_voltage": 12600,
"battery_min_voltage": 10000,
"cpu_temp": 52582,
"gpu_temp": 0,
"cpu_usages": [1.500, 2.000, 0.000, 2.000, 2.000],
"mem_total": 1891540,
"mem_free": 62780,
"mem_used": 729076,
"mem_buff_cache": 1099684,
"mem_available": 1360044,
"mem_swap_total": 0,
"mem_swap_free": 0,
"disk_total": 877448515584,
"disk_free": 876156772352,
"net": [{
"name": "eth0",
"rx": 1529461109,
"tx": 1704797921,
"rx_rate": 132.000,
"tx_rate": 1244.000
}]
}
Note:
Recently i've used the Raspberry Pi 4 as my home server (an article about this topic is in redaction), sysmond
is used to monitor the resource on this server, below is an example configuration:
# Battery monitoring is disabled
battery_max_voltage = 12600
battery_min_voltage = 10000
battery_cutoff_voltage = 9000
battery_divide_ratio = 3.36
# battery_input =
# daemon configuration
# time period between loop step in ms
sample_period = 500
#number of cpus to monitor
cpu_core_number = 4
# network interfaces to monitor
network_interfaces = eth0
# e.g. wlan0,eth0
# disk mount point to monitor
disk_mount_point = /opt/cloud
# when battery is low
# the system will be shutdown after n count down
power_off_count_down = 10
# the system will bet shutdown if the battery voltage percent is below this value
power_off_percent = 3
cpu_temperature_input=/sys/devices/virtual/thermal/thermal_zone0/temp
#gpu_temperature_input=/sys/devices/virtual/thermal/thermal_zone2/temp
# output system info to file
data_file_out = /var/fbf070ddea3ea90d07f456540b405d302554ec82
Since the raspberry is powered using "wall" power, and there is no ADC sensor available, the battery monitoring feature is disabled.
The service outputs data to a name pipe that is used by another application for visualization.