autograph 0.3.0 → 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
data/Rakefile CHANGED
@@ -8,7 +8,7 @@ begin
8
8
  gem.summary = %Q{Simple httperf runner with nice html reports with graphs.}
9
9
  gem.description = %Q{Autograph wraps httperf, running multiple tests while varying the parameters, graphing the output.}
10
10
  gem.email = "nick.stielau@gmail.com"
11
- gem.homepage = "http://github.com/nstielau/autograph"
11
+ gem.homepage = "http://nstielau.github.com/autograph"
12
12
  gem.authors = ["Nick Stielau"]
13
13
  # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
14
14
  end
data/TODO CHANGED
@@ -1,28 +1,35 @@
1
- # Compare multiple hosts hosts
1
+ TEST RUNNER
2
+ Compare multiple hosts (maybe take full URIs instead of a host and set of URIs)
2
3
 
3
- # Deal with AcceptEncoding, add options
4
+ Trap exit and write output to file?
4
5
 
5
- # Control verbose output with a Logger, instead of just going to STDOUT
6
+ Handle SOAP?
6
7
 
7
- # Don't include overview for one page...
8
+ Add interactive mode ?
8
9
 
9
- # Pass-through httperf args
10
+ Replay log?
10
11
 
11
- # Config file?
12
- # Take a txt file for the urls
12
+ Config file?
13
13
 
14
- # Remove default timeout httperf option...(what happens if it is removed?)
15
- # Add interactive mode
14
+ Remove default timeout httperf option...(what happens if it is removed?)
16
15
 
17
- # Trap exit and write output to file? (Can you have two traps?)
18
-
19
- # Skinning
16
+ HTML REPORT
20
17
  Improve table styles
21
18
 
22
- # Put real connection/timeout etc. values in discussion.
19
+ Data-point mouse-over
20
+ different formatters for each graph
21
+ transparent background
22
+ bigger text
23
+
24
+ Put real connection/timeout etc. values in discussion.
23
25
 
26
+ DOCS
27
+ usage notes
28
+ Num conns must increase with rate
24
29
 
25
- # Docs
26
- Add EC2 instructions
30
+ BRANDING
31
+ logo
32
+ favicon
27
33
 
28
- # Add gh-pages with graphs
34
+ HTML PAGE
35
+ link to dev.nuclearrooster.com, computerkoala.com
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.3.0
1
+ 0.3.1
@@ -69,7 +69,7 @@ class AutoPerf
69
69
  report = Table.new(COLUMN_NAMES)
70
70
 
71
71
  (configuration['low_rate']..configuration['high_rate']).step(configuration['rate_step']) do |rate|
72
- results[rate] = benchmark(configuration.merge({'httperf_rate' => rate, 'httperf_uri' => uri}))
72
+ results[rate] = benchmark(configuration.merge({'httperf_rate' => rate, 'httperf_uri' => "'#{uri}'"}))
73
73
  report << results[rate].merge({'rate' => rate})
74
74
 
75
75
  puts report.to_s
@@ -1,8 +1,6 @@
1
1
  class Configuration
2
2
  def initialize(opts={})
3
- @conf = {'httperf_timeout' => 120,
4
- 'httperf_num-call' => 1,
5
- 'httperf_num-conns' => 100,
3
+ @conf = {'httperf_num-conns' => 100,
6
4
  'httperf_rate' => 5,
7
5
  'port' => 80,
8
6
  'uri' => '/',
@@ -75,9 +75,9 @@
75
75
  <li class="widget widget_recent_entries">
76
76
  <h2 class="widgettitle">Report Sections</h2>
77
77
  <ul>
78
- <li><a href="#" onclick="show_section('graphs');">Graphs</a></li>
79
- <li><a href="#" onclick="show_section('tables');">Tables</a></li>
80
- <li><a href="#" onclick="show_section('discussion');">Discussion</a></li>
78
+ <li><a href="#" onclick="show_section('graphs');return false;">Graphs</a></li>
79
+ <li><a href="#" onclick="show_section('tables');return false;">Tables</a></li>
80
+ <li><a href="#" onclick="show_section('discussion');return false;">Discussion</a></li>
81
81
  </ul>
82
82
  </li>
83
83
  <li class="section section_graphs">
metadata CHANGED
@@ -5,8 +5,8 @@ version: !ruby/object:Gem::Version
5
5
  segments:
6
6
  - 0
7
7
  - 3
8
- - 0
9
- version: 0.3.0
8
+ - 1
9
+ version: 0.3.1
10
10
  platform: ruby
11
11
  authors:
12
12
  - Nick Stielau
@@ -14,7 +14,7 @@ autorequire:
14
14
  bindir: bin
15
15
  cert_chain: []
16
16
 
17
- date: 2010-05-29 00:00:00 -07:00
17
+ date: 2010-07-06 00:00:00 -07:00
18
18
  default_executable: autograph
19
19
  dependencies: []
20
20
 
@@ -55,7 +55,7 @@ files:
55
55
  - test/test_html_report.rb
56
56
  - test/test_table.rb
57
57
  has_rdoc: true
58
- homepage: http://github.com/nstielau/autograph
58
+ homepage: http://nstielau.github.com/autograph
59
59
  licenses: []
60
60
 
61
61
  post_install_message: