
    set terminal png
    set output "/var/tmp/canary/canary_dashboard/web/png/.png"
    set multiplot
    set size 1.0, 0.6
    set origin 0.0, 0.4
    set title "Daily CPU load profile for progam: "
    set xlabel
    set data style lines
    set ylabel 'CPU hours/day'
    plot  '/var/tmp/canary/canary_dashboard/web/data/.dat' using 1:2  title "Average CPU load/day"
    
    set size 1.0, 0.4
    set origin 0.0, 0.0

    set ylabel 'Elapsed time for PID (in days)'
    set xlabel "Index into .dat file"
    set title
    plot  '/var/tmp/canary/canary_dashboard/web/data/.dat' using 1:3 title "Age of PID (in days)"
    set nomultiplot
    