changeset 30:dc0cf6bc9fbe

Add titles to graphs
author IBBoard <dev@ibboard.co.uk>
date Sun, 03 Jan 2021 19:32:26 +0000
parents c2584db4a650
children 72e04923c4d4
files load-graph
diffstat 1 files changed, 3 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/load-graph	Wed Dec 30 17:22:29 2020 +0000
+++ b/load-graph	Sun Jan 03 19:32:26 2021 +0000
@@ -21,14 +21,14 @@
 	cpu_lines+=("LINE1:core${i}#99000040:\"Core-${i}\"")
 done
 
-rrdtool graph /tmp/load-percent.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" \
+rrdtool graph /tmp/load-percent.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" --title "CPU/GPU load" \
 	--vertical-label "Usage (%)" \
 	${cpu_lines[@]} \
 	DEF:CPU=$HOME/.load.rrd:core_avg:AVERAGE \
 	DEF:GPU=$HOME/.load.rrd:GPU:AVERAGE \
 	LINE2:CPU#990000:"CPU" \
 	LINE2:GPU#009900:"GPU" \
-&& rrdtool graph /tmp/load-type.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" \
+&& rrdtool graph /tmp/load-type.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" --title "CPU task types" \
 	--vertical-label "Usage (%)" \
 	DEF:user=$HOME/.load.rrd:user:AVERAGE \
 	DEF:system=$HOME/.load.rrd:system:AVERAGE \
@@ -36,7 +36,7 @@
 	AREA:iowait#888888:"I/O Wait" \
 	STACK:system#6666FF:"System" \
 	STACK:user#CCCC66:"User" \
-&& rrdtool graph /tmp/load-memory.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" \
+&& rrdtool graph /tmp/load-memory.png -w 1280 -h 1024 -a PNG --start "$start" --end "$end" --title "Memory" \
 	--vertical-label "Usage (%)" \
 	DEF:mem_used=$HOME/.load.rrd:mem_used:AVERAGE \
 	DEF:mem_buffers=$HOME/.load.rrd:mem_buffers:AVERAGE \