X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=plot_scripts%2Fplot_ts_graph_smartthings-plug_combined;fp=plot_scripts%2Fplot_ts_graph_smartthings-plug_combined;h=0000000000000000000000000000000000000000;hb=2e874f57745e5a1ab10d57e18c6687f5546ab1b4;hp=f0133ccb5cb10e1ded338c51c287dee024d6d692;hpb=2422deddd73a43bbcbda776d6ddddba05318a2d2;p=pingpong.git diff --git a/plot_scripts/plot_ts_graph_smartthings-plug_combined b/plot_scripts/plot_ts_graph_smartthings-plug_combined deleted file mode 100644 index f0133cc..0000000 --- a/plot_scripts/plot_ts_graph_smartthings-plug_combined +++ /dev/null @@ -1,44 +0,0 @@ -# Script to plot time series graphs for network traffic analysis -# -# by Rahmadi Trimananda (rahmadi.trimananda@uci.edu) -# Programming Language Research Group @ University of California, Irvine -# Winter 2018 - -# ************ # -# BASIC SETUP # -# ************ # -set terminal pngcairo enhanced font 'Verdana,10' -set autoscale -set key -unset log -unset label -set xtics 50 -set xtics rotate by 60 right -set ytics auto -set xlabel "Packet Timestamp (hh:mm:ss)" -set ylabel "Packet Size (bytes)" -set xdata time -set timefmt "%H:%M:%S" -set xrange [:] -set yrange [0:] - -# ***************** # -# PER DEVICE SETUP # -# ***************** # -# SmartThings Plug switch local -# wlan1 / eth0 / eth1 -set output './result/smartthings-plug_switch_wlan1_timestamp_local_incoming_combined.png' -set title "SmartThings Plug Switch Incoming Local Traffic (wlan1/eth0/eth1)" -plot "./result/smartthings-plug_switch_eth0_local_incoming.dat" using 1:2 with lines title "eth0", "./result/smartthings-plug_switch_eth1_local_incoming.dat" using 1:2 with lines title "eth1", "./result/smartthings-plug_phone_wlan1_local_outgoing.dat" using 1:2 with lines title "wlan1-phone-outgoing", "./result/smartthings-plug_phone_wlan1_local_incoming.dat" using 1:2 with lines title "wlan1-phone-incoming" -set output './result/smartthings-plug_switch_wlan1_timestamp_local_outgoing_combined.png' -set title "SmartThings Plug Switch Outgoing Local Traffic (wlan1/eth0/eth1)" -plot "./result/smartthings-plug_switch_wlan1_local_outgoing.dat" using 1:2 with lines title "wlan1", "./result/smartthings-plug_switch_eth0_local_outgoing.dat" using 1:2 with lines title "eth0", "./result/smartthings-plug_switch_eth1_local_outgoing.dat" using 1:2 with lines title "eth1", "./result/smartthings-plug_phone_wlan1_local_outgoing.dat" using 1:2 with lines title "wlan1-phone-outgoing", "./result/smartthings-plug_phone_wlan1_local_incoming.dat" using 1:2 with lines title "wlan1-phone-incoming" - -# SmartThings Plug switch remote -# eth0 / eth1 -set output './result/smartthings-plug_switch_wlan1_timestamp_remote_incoming_combined.png' -set title "SmartThings Plug Switch Incoming Remote Traffic (eth0/eth1)" -plot "./result/smartthings-plug_switch_eth0_remote_incoming.dat" using 1:2 with lines title "eth0", "./result/smartthings-plug_switch_eth1_remote_incoming.dat" using 1:2 with lines title "eth1" -set output './result/smartthings-plug_switch_wlan1_timestamp_remote_outgoing_combined.png' -set title "SmartThings Plug Switch Outgoing Remote Traffic (eth0/eth1)" -plot "./result/smartthings-plug_switch_eth0_remote_outgoing.dat" using 1:2 with lines title "eth0", "./result/smartthings-plug_switch_eth1_remote_outgoing.dat" using 1:2 with lines title "eth1"