autograph 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +1 -1
- data/TODO +23 -16
- data/VERSION +1 -1
- data/lib/autograph/autoperf.rb +1 -1
- data/lib/autograph/configuration.rb +1 -3
- data/lib/autograph/report.html.erb +3 -3
- metadata +4 -4
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/
|
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
|
-
|
1
|
+
TEST RUNNER
|
2
|
+
Compare multiple hosts (maybe take full URIs instead of a host and set of URIs)
|
2
3
|
|
3
|
-
|
4
|
+
Trap exit and write output to file?
|
4
5
|
|
5
|
-
|
6
|
+
Handle SOAP?
|
6
7
|
|
7
|
-
|
8
|
+
Add interactive mode ?
|
8
9
|
|
9
|
-
|
10
|
+
Replay log?
|
10
11
|
|
11
|
-
|
12
|
-
# Take a txt file for the urls
|
12
|
+
Config file?
|
13
13
|
|
14
|
-
|
15
|
-
# Add interactive mode
|
14
|
+
Remove default timeout httperf option...(what happens if it is removed?)
|
16
15
|
|
17
|
-
|
18
|
-
|
19
|
-
# Skinning
|
16
|
+
HTML REPORT
|
20
17
|
Improve table styles
|
21
18
|
|
22
|
-
|
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
|
-
|
26
|
-
|
30
|
+
BRANDING
|
31
|
+
logo
|
32
|
+
favicon
|
27
33
|
|
28
|
-
|
34
|
+
HTML PAGE
|
35
|
+
link to dev.nuclearrooster.com, computerkoala.com
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.3.
|
1
|
+
0.3.1
|
data/lib/autograph/autoperf.rb
CHANGED
@@ -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
|
@@ -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
|
-
-
|
9
|
-
version: 0.3.
|
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-
|
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/
|
58
|
+
homepage: http://nstielau.github.com/autograph
|
59
59
|
licenses: []
|
60
60
|
|
61
61
|
post_install_message:
|