Skip to content

Raspberry Pi - Collect information about CPU, with and without load and different setups

License

Notifications You must be signed in to change notification settings

fhag/raspi-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

v0.0.14

raspi-info.py

Utilies to collect information about your Raspberry and monitor CPU status under load. This code was developped to check power supplies and cables of Raspberry Pi 3+, as my Raspi lost sometimes the WiFi Connection or crashed without reason. It turned out, that due to a bad power supply and cable the processor was throttled.

The actual state can be read out with vcgencmd get_throttled. For testing different combinations of power supply and cables this code was used.

Learnings are:

  • Do not rely on indications of power supply: 5v, 2.5A indications looks fine, but a poor power supply can slow down your Raspi.
  • Strong power supply do not automatically provide the stable power required by your Raspi.
  • Try different cables in combination. Expensive cables are not the best.
  • Under heavy CPU load a throttling of Raspi CPUs is happening more often

Table of contents

  1. raspi.py
  2. raspicheck.py
  3. raspiload.py
  4. raspianalyse.py
  5. v.py
  6. showfonts.py

Sample analysis

Sample chart


return to top

raspi.py

Usage

Run this code with different power supplies and cables to find weak combinations. The printout and saved text shows if under-voltage is detected, Arm frequency is capped, CPU is throttled or a "Soft temperature limit" is active. Testing during 10 minutes, whereas the last half is tested under heavy CPU load, shows failing cases.

The created file can be parsed for some statistical analysis the lines are fixed length.

Installation

Download raspi.py, raspicheck.py and raspiload.py into the same directory where you need it. Create also a folder data/ for file output.

How to use

  • setup = Description of setup is added to file name and stored to textfile. If empty the user is prompted to input setup information.
  • timeout = number of seconds to apply checking.

bash command line

$ python3 raspi.py -h
usage: raspi.py [-h] [-t] [setup [setup ...]]

Monitor CPU parameters with changing CPU load

optional arguments:
  setup            a string describing test setup
  -h, --help       show this help message and exit
  -t , --timeout   runtime of tests - timeout in seconds

If setup is an empty string (''), an input is requested after start.

Enter test setup:

Sample output

command line start

$ python3 raspi.py sample-raspi -t 5
'sample-raspi' running for  0.1 minutes
Start CPU load delayed by 2 seconds
   0. Core data - After   0.0 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 44.0°C | Volt:  1.2000V | Freq: 1.40GHz | Load: 28%  | [ 71%,  21%,  15%,   4%]
   1. Core data - After   1.1 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 44.0°C | Volt:  1.2000V | Freq: 0.60GHz | Load:  4%  | [  5%,   4%,   4%,   3%]
Start test for 2 seconds on 4 CPUs with 100% load
   2. Core data - After   2.2 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 45.1°C | Volt:  1.2000V | Freq: 1.40GHz | Load: 43%  | [ 45%,  43%,  41%,  41%]
   3. Core data - After   3.7 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 45.1°C | Volt:  1.2000V | Freq: 1.40GHz | Load:100%  | [100%, 100%, 100%, 100%]
Load CPUs terminated after 2.19 sec
Check results in file: data/cr2020-04-10-094643_sample-raspi.txt
Finished after 5 seconds

... created the following text file:

$ ls -l data/*sample*.txt
-rw-r--r-- 1 pi pi 899 Apr 10 09:46 data/cr2020-04-10-094643_sample-raspi.txt
$
$ head data/*sample*.txt
==> data/cr2020-04-10-094633_sample-raspi.txt <==
data/cr2020-04-10-094633_sample-raspi.txt
sample-raspi
Core data - After   0.0 seconds | CPU:  ok | Voltage:  ok | arm freq:     ok | throttled:  no | Soft temp limit: inactive | Temp: 42.9°C | Volt:  1.3500V | Freq: 1.40GHz | Load: 34%  | [ 53%,  39%,  22%,  18%]
Core data - After   2.2 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 43.5°C | Volt:  1.2000V | Freq: 1.40GHz | Load: 40%  | [ 43%,  41%,  40%,  39%]
Core data - After   3.6 seconds | CPU: NOK | Voltage: low | arm freq:     ok | throttled: yes | Soft temp limit: inactive | Temp: 45.1°C | Volt:  1.2000V | Freq: 1.40GHz | Load:100%  | [100%, 100%, 100%, 100%]

return to top


raspicheck.py

Simulate workload on all CPU core for Raspberry Pi. This code is independent of platform and was also tested on windows.

Installation

Download raspicheck.py and raspiload.py into the same directory where you need it. Create also a folder data/ for file output.

How to use

Used in raspi.py and produces same output. Can also be invoked in python3:

rcheck = RaspiCheck(setup='', timeout=10)
rcheck.main()
Enter test setup:second test
'second test' running for  0.2 minutes
Start CPU load delayed by 5 seconds
   0. Core data - After   0.0 seconds | CPU:  ok (...)

for sample output see raspi.py raspi.py output sample

return to top


raspiload.py

Simulate workload on all CPU cores for Raspberry Pi. Code is independent of platform and was tested Rasbian and on Windows.

  • Increases CPU load to specific level
  • Uses up to all cores of multi-core processors
  • function to simulate load can be defined

Installation

Download raspiload.py in the directory where you need it and create a folder data/ for file output.

How to use

in python

    from raspiload import load_cpus
    timeout = 5   # runtime in seconds - effective time is longe due to overhead
    loadpct = 0.6 # approx. 60% load of CPU
    max_cpus = 2  # use only up to 2 CPUs  (None for all CPUs)
    delay = 0     # start loading after 0 seconds
    context = dict(timeout=timeout, loadpct=loadpct,
                   max_cpus=max_cpus, delay=delay)
    load_cpus(**context)

Sample output

Start test for 5 seconds on 2 CPUs with 60% load
Load CPUs terminated after 5.12 sec

return to top


raspianalyse.py

Takes *.txt files from raspicheck.py and creates a chart in a pdf. The page shows charts of all key indicators collected in raspicheck.py over time. The file can also be save as 'jpg' or 'png' by changing the file extension.

Installation

Download raspianalyse.py into the directory where you need it and create a folder data/ for file output.
Requires module matplotlib.

How to use

Create PDFs from all txt files in charts/. Folder charts/ is created if necessary. Charts in pdf-format are automatically created when raspi.py is run and matplotlib is installed.

python3 raspianalyse.py  

If .img or .png are preferred just change file extension in the code, or use after running raspianalyse.py

>>> fig.savefig('sample.png')

or

>>> fig.savefig('sample.img')

Sample output

Raspi 4 - original power supply

Nature

Raspi 3A+ - power supply ok

Sample chart

Raspi 3A+ - poor cable

Nature

Raspi 3A+ - weak power supply

Sample chart

return to top


v.py

Helps keeping track of version on different computer. Looks for version keyword in text files and for a version number of format 0.0.1. Shows all text files with version numbers.

Installation

Download v.py into the directory where you need it.

How to use

From commandline: $ python3 v.py

Specific file types are excluded in the source code: exclude_ftypes = ['.sample', '.log', '.cache']

Sample output

>---------------------------------- .gitignore ------------------------------
0.0.1     : .gitignore
------------------------------------- .md -----------------------------------
 Missing   : README.md
------------------------------------ .txt -----------------------------------
Missing   : v_sample.txt
------------------------------------- .py -----------------------------------
0.0.2     : raspi.py
0.0.14    : raspicheck.py
0.0.6     : raspiload.py
Missing   : showfonts.py
1.0.16    : v.py
-----------------------------------------------------------------------------

return to top


showfonts.py

Find all TrueType fonts ("TTF") installed on your Raspberry. TTF can be used for example in python :

from PIL import ImageFont<br>
ImageFont.truetype('Vera')

Installation

Download showfonts.py in the directory where you need it.

How to use

From commandline: $ python3 showfonts.py

return to top