Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| bf87653e77 | |||
| 8e6ea348cc |
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
|
||||||
|
|
||||||
@@ -21,11 +21,10 @@ format_temp() {
|
|||||||
echo "${ftemp}"
|
echo "${ftemp}"
|
||||||
}
|
}
|
||||||
|
|
||||||
ZONE=/sys/class/thermal/thermal_zone0/temp
|
|
||||||
|
|
||||||
#retrieve the cpu's temperature from /sys/class/thermal/thermal_zone0/temp
|
#retrieve the cpu's temperature from /sys/class/thermal/thermal_zone0/temp
|
||||||
measure_temp() {
|
measure_temp() {
|
||||||
cpu_temp=$(cat ${ZONE})
|
cpu_temp=$(cat ${THERMAL_ZONE})
|
||||||
|
|
||||||
formatted_temp=$(format_temp "${cpu_temp}")
|
formatted_temp=$(format_temp "${cpu_temp}")
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
#!/bin/bash
|
#! /usr/bin/env bash
|
||||||
VERSION="1.00"
|
VERSION="1.04"
|
||||||
usage() {
|
usage() {
|
||||||
local name=${0##*/}
|
local name=${0##*/}
|
||||||
|
|
||||||
@@ -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,4 +1,15 @@
|
|||||||
|
#! /usr/bin/env bash
|
||||||
|
|
||||||
|
if [ -f ~/.pistressrc ]; then
|
||||||
|
. ~/.pistressrc
|
||||||
|
else
|
||||||
|
export PISTRESS_HOME=/home/pi/git/pistress
|
||||||
|
|
||||||
export FIO_NUMJOBS=$(nproc)
|
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 ${PISTRESS_HOME}/fio/fio_cpu
|
fio ${PISTRESS_HOME}/fio/fio_cpu
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
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=${FIO_NUMJOBS}
|
numjobs=${FIO_NUMJOBS}
|
||||||
|
|||||||
Reference in New Issue
Block a user