set term png large size SIZE set title "Greg's DSL line stats, RANGE, UNsmoothed" set xlabel "Date" set ylabel "db, kb/s * 10" set xdata time set timefmt "%s" set format x "%H:%M\n%d%h" set yrange [-1:40] plot "/var/tmp/dslstats" using ($1 + TZOFFSET - 946684800):2 \ title "downstream margin" with linesSMOOTH, \ "/var/tmp/dslstats" using ($1 + TZOFFSET - 946684800):3 \ title "upstream margin" with linesSMOOTH, \ "/var/tmp/dslstats" using ($1 + TZOFFSET - 946684800):($4 / 100) \ title "downstream rate kb/s" with linesSMOOTH, \ "/var/tmp/dslstats" using ($1 + TZOFFSET - 946684800):($5 / 10) \ title "upstream rate kb/s * 10" with linesSMOOTH, \ "/var/tmp/linkstats" using ($1 + TZOFFSET - 946684800):($2) \ title "link status" with linesSMOOTH, \ "/var/tmp/linkstats" using ($1 + TZOFFSET - 946684800):($3) \ title "net connectivity (0 to 5)" with linesSMOOTH