Skip to content

Instantly share code, notes, and snippets.

@adepasquale
Last active August 29, 2015 14:22
Show Gist options
  • Save adepasquale/5bcb918dd396b7d5c773 to your computer and use it in GitHub Desktop.
Save adepasquale/5bcb918dd396b7d5c773 to your computer and use it in GitHub Desktop.
Gnuplot script for snort.stats file
set title 'Snort dropped packets'
set xlabel 'time'
set ylabel 'dropped packets %'
set grid
set term png
set output 'snort_dropped_packets.png'
set datafile separator ','
plot 'snort.stats' using 1:2 with line lt -1 lw 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment