Compare commits
6 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bf87653e77 | |||
| 8e6ea348cc | |||
| 3dbbedaec6 | |||
| 3f85cd6dd8 | |||
| 939da6f3dc | |||
| 3d68686a96 |
6
.pistressrc
Normal file
6
.pistressrc
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export PISTRESS_HOME=/home/pi/git/pistress
|
||||||
|
export THERMAL_ZONE=/sys/class/thermal/thermal_zone0/temp
|
||||||
|
|
||||||
|
export FIO_NUMJOBS=$(nproc)
|
||||||
|
export FIO_RUNNING_TIME=3600
|
||||||
|
|
||||||
@@ -7,10 +7,30 @@ usage() {
|
|||||||
cat <<-EOF
|
cat <<-EOF
|
||||||
Usage: ${name} [-h || --help]
|
Usage: ${name} [-h || --help]
|
||||||
|
|
||||||
measures the pu core temperature an echoes with a squenence number to stdout.
|
measures the cpu's core temperature and writes it with a timestamp to stdout.
|
||||||
EOF
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#format the temperature to float value
|
||||||
|
format_temp() {
|
||||||
|
ftemp=${1:0:2}
|
||||||
|
|
||||||
|
ftemp+="."
|
||||||
|
ftemp+=${1:2:1}
|
||||||
|
|
||||||
|
echo "${ftemp}"
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#retrieve the cpu's temperature from /sys/class/thermal/thermal_zone0/temp
|
||||||
|
measure_temp() {
|
||||||
|
cpu_temp=$(cat ${THERMAL_ZONE})
|
||||||
|
|
||||||
|
formatted_temp=$(format_temp "${cpu_temp}")
|
||||||
|
|
||||||
|
echo "${formatted_temp}"
|
||||||
|
}
|
||||||
|
|
||||||
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
if [[ "$1" == "-h" || "$1" == "--help" ]]; then
|
||||||
usage
|
usage
|
||||||
exit 0
|
exit 0
|
||||||
@@ -19,8 +39,8 @@ fi
|
|||||||
while true; do
|
while true; do
|
||||||
NOW=$(date +%s)
|
NOW=$(date +%s)
|
||||||
TS=$((NOW - START))
|
TS=$((NOW - START))
|
||||||
TEMP=$(vcgencmd measure_temp | sed 's/[^0-9.]//g')
|
TEMP=$(measure_temp)
|
||||||
echo "$TS $TEMP"
|
echo "${TS} ${TEMP}"
|
||||||
sleep 1
|
sleep 1
|
||||||
done
|
done
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#! /usr/bin/env bash
|
||||||
VERSION="1.00"
|
VERSION="1.04"
|
||||||
usage() {
|
usage() {
|
||||||
local name=${0##*/}
|
local name=${0##*/}
|
||||||
|
|
||||||
@@ -33,7 +33,7 @@ fi
|
|||||||
|
|
||||||
verbose=false
|
verbose=false
|
||||||
COLOR='red'
|
COLOR='red'
|
||||||
PADDING=5
|
PADDING=0
|
||||||
|
|
||||||
VALID_ARGS=$(getopt -o vho:c:t:l: --long verbose,help,output,color:,title:,logfile: -- "$@")
|
VALID_ARGS=$(getopt -o vho:c:t:l: --long verbose,help,output,color:,title:,logfile: -- "$@")
|
||||||
if [[ $? -ne 0 ]]; then
|
if [[ $? -ne 0 ]]; then
|
||||||
@@ -121,6 +121,6 @@ plot LOGFILE using 1:2 with lines lc rgb COLOR lw 2 title 'CPU-Temperatur';
|
|||||||
"
|
"
|
||||||
|
|
||||||
|
|
||||||
echo "Plot erzeugt: $OUTFILE"
|
echo "Plot generated: ${OUTFILE}"
|
||||||
exit 0
|
exit 0
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,18 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
if [ -f ~/.pistressrc ]; then
|
||||||
|
. ~/.pistressrc
|
||||||
|
else
|
||||||
|
export PISTRESS_HOME=/home/pi/git/pistress
|
||||||
|
|
||||||
|
export FIO_NUMJOBS=$(nproc)
|
||||||
|
export FIO_RUNNING_TIME=3600
|
||||||
|
export THERMAL_ZONE=/sys/class/thermal/thermal_zone0/temp
|
||||||
|
fi
|
||||||
|
|
||||||
measure_temp.sh > ${1} &
|
measure_temp.sh > ${1} &
|
||||||
TPID=$!
|
TPID=$!
|
||||||
fio ~/git/pistress/fio/fio_cpu
|
fio ${PISTRESS_HOME}/fio/fio_cpu
|
||||||
kill $TPID > /dev/null
|
kill $TPID > /dev/null
|
||||||
|
unset FIO_NUMJOBS
|
||||||
|
|
||||||
|
|||||||
@@ -2,10 +2,10 @@
|
|||||||
ioengine=cpuio
|
ioengine=cpuio
|
||||||
cpuload=100
|
cpuload=100
|
||||||
cpuchunks=100000
|
cpuchunks=100000
|
||||||
runtime=3600
|
runtime=${FIO_RUNNING_TIME}
|
||||||
time_based
|
time_based
|
||||||
group_reporting
|
group_reporting
|
||||||
numjobs=4
|
numjobs=${FIO_NUMJOBS}
|
||||||
|
|
||||||
[cpu-stress]
|
[cpu-stress]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user