Created
January 28, 2010 02:35
-
-
Save msonnabaum/288383 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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