Skip to content

Instantly share code, notes, and snippets.

@msonnabaum
Created January 28, 2010 02:35
Show Gist options
  • Save msonnabaum/288383 to your computer and use it in GitHub Desktop.
Save msonnabaum/288383 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
require 'rubygems'
require 'xmlsimple'
require 'flotr'
log = XmlSimple.xml_in('blah.log')
f = Flotr::Data.new(:label => "Total Response", :color => "red")
log['httpSample'].each_with_index do |r,i|
f << [i, r["t"].to_i]
end
plot = Flotr::Plot.new("Total Response Times")
plot.comment = "Total response time for all page resources"
plot.options = {:legend_position => "ne", :points => 'true'}
plot.height = 480
plot.width = 800
plot.label = {:X => "Response Time (ms)"}
plot << f
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment