bigbench 0.0.3 → 0.0.4
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/.DS_Store +0 -0
- data/README.textile +254 -4
- data/Rakefile +43 -9
- data/doc/Array.html +288 -0
- data/doc/BigBench.html +32 -6
- data/doc/BigBench/Benchmark.html +24 -0
- data/doc/BigBench/Benchmark/Benchmark.html +24 -0
- data/doc/BigBench/Benchmark/Looper.html +24 -0
- data/doc/BigBench/Bot.html +24 -0
- data/doc/BigBench/Configuration.html +24 -0
- data/doc/BigBench/Configuration/Config.html +24 -0
- data/doc/BigBench/Configuration/InvalidOptions.html +24 -0
- data/doc/BigBench/Executor.html +33 -3
- data/doc/BigBench/Executor/InvalidCommand.html +25 -1
- data/doc/BigBench/Fragment.html +24 -0
- data/doc/BigBench/Fragment/Fragment.html +24 -0
- data/doc/BigBench/Output.html +24 -0
- data/doc/BigBench/PostProcessor.html +33 -6
- data/doc/BigBench/PostProcessor/Environment.html +489 -2
- data/doc/BigBench/PostProcessor/Environment/Appearings.html +327 -0
- data/doc/BigBench/PostProcessor/Environment/AttributeCluster.html +275 -0
- data/doc/BigBench/PostProcessor/Environment/BenchmarkNotFound.html +293 -0
- data/doc/BigBench/PostProcessor/Environment/Cluster.html +387 -0
- data/doc/BigBench/PostProcessor/Environment/NormalDistribution.html +383 -0
- data/doc/BigBench/PostProcessor/Environment/PolynomialRegression.html +438 -0
- data/doc/BigBench/PostProcessor/Environment/Statistics.html +568 -0
- data/doc/BigBench/PostProcessor/Graphs.html +270 -0
- data/doc/BigBench/PostProcessor/Graphs/LineGraph.html +403 -0
- data/doc/BigBench/PostProcessor/Graphs/PieGraph.html +396 -0
- data/doc/BigBench/PostProcessor/InvalidProcessor.html +25 -1
- data/doc/BigBench/PostProcessor/Processor.html +59 -7
- data/doc/BigBench/PostProcessor/Statistics.html +26 -2
- data/doc/BigBench/PostProcessor/Test.html +26 -2
- data/doc/BigBench/Runner.html +24 -0
- data/doc/BigBench/Runner/NoBenchmarksDefined.html +24 -0
- data/doc/BigBench/Store.html +24 -0
- data/doc/BigBench/Tracker.html +24 -0
- data/doc/BigBench/Tracker/Tracker.html +24 -0
- data/doc/EventMachineLoop.html +24 -0
- data/doc/Float.html +24 -0
- data/doc/Gemfile.html +24 -0
- data/doc/Helpers.html +78 -0
- data/doc/Object.html +29 -0
- data/doc/README_rdoc.html +803 -0
- data/doc/Rakefile.html +66 -10
- data/doc/created.rid +46 -40
- data/doc/index.html +667 -1
- data/doc/js/search_index.js +1 -1
- data/doc/lib/bigbench/help/executor_txt.html +32 -2
- data/doc/rdoc.css +4 -0
- data/doc/table_of_contents.html +179 -23
- data/doc/test_rdoc.html +159 -0
- data/lib/bigbench.rb +2 -0
- data/lib/bigbench/executor.rb +17 -1
- data/lib/bigbench/help/executor.txt +5 -0
- data/lib/bigbench/post_processor.rb +16 -32
- data/lib/bigbench/post_processor/environment.rb +525 -0
- data/lib/bigbench/post_processor/graphs.rb +209 -0
- data/lib/bigbench/post_processor/statistics.rb +29 -49
- data/lib/bigbench/version.rb +1 -1
- data/spec/executor_spec.rb +35 -0
- data/spec/helpers.rb +15 -1
- data/spec/post_processor_spec.rb +19 -4
- data/spec/post_processors/environment_spec.rb +412 -0
- data/spec/post_processors/graphs_spec.rb +23 -0
- data/spec/post_processors/statistics_spec.rb +3 -2
- data/spec/tests/local.rb +1 -1
- data/spec/tests/sample_results_big.ljson +51925 -0
- data/spec/tests/sample_results_small.ljson +3875 -0
- data/spec/tests/with_post_processor.ljson +43 -0
- data/spec/tests/with_post_processor.rb +12 -0
- data/spec/tmp/.DS_Store +0 -0
- data/spec/tracker_spec.rb +8 -8
- metadata +61 -101
data/doc/BigBench.html
CHANGED
|
@@ -54,6 +54,8 @@
|
|
|
54
54
|
<li>lib/bigbench/executor.rb
|
|
55
55
|
<li>lib/bigbench/fragment.rb
|
|
56
56
|
<li>lib/bigbench/output.rb
|
|
57
|
+
<li>lib/bigbench/post_processor/environment.rb
|
|
58
|
+
<li>lib/bigbench/post_processor/graphs.rb
|
|
57
59
|
<li>lib/bigbench/post_processor/statistics.rb
|
|
58
60
|
<li>lib/bigbench/post_processor.rb
|
|
59
61
|
<li>lib/bigbench/runner.rb
|
|
@@ -117,6 +119,8 @@
|
|
|
117
119
|
|
|
118
120
|
<li class="file"><a href="./Gemfile.html">Gemfile</a>
|
|
119
121
|
|
|
122
|
+
<li class="file"><a href="./README_rdoc.html">README</a>
|
|
123
|
+
|
|
120
124
|
<li class="file"><a href="./Rakefile.html">Rakefile</a>
|
|
121
125
|
|
|
122
126
|
<li class="file"><a href="./lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -159,6 +163,26 @@
|
|
|
159
163
|
|
|
160
164
|
<li><a href="./BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
161
165
|
|
|
166
|
+
<li><a href="./BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
167
|
+
|
|
168
|
+
<li><a href="./BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
169
|
+
|
|
170
|
+
<li><a href="./BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
171
|
+
|
|
172
|
+
<li><a href="./BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
173
|
+
|
|
174
|
+
<li><a href="./BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
175
|
+
|
|
176
|
+
<li><a href="./BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
177
|
+
|
|
178
|
+
<li><a href="./BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
179
|
+
|
|
180
|
+
<li><a href="./BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
181
|
+
|
|
182
|
+
<li><a href="./BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
183
|
+
|
|
184
|
+
<li><a href="./BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
185
|
+
|
|
162
186
|
<li><a href="./BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
163
187
|
|
|
164
188
|
<li><a href="./BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -177,6 +201,8 @@
|
|
|
177
201
|
|
|
178
202
|
<li><a href="./BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
179
203
|
|
|
204
|
+
<li><a href="./Array.html">Array</a>
|
|
205
|
+
|
|
180
206
|
<li><a href="./EventMachineLoop.html">EventMachineLoop</a>
|
|
181
207
|
|
|
182
208
|
<li><a href="./Float.html">Float</a>
|
|
@@ -485,7 +511,7 @@ end'</span>
|
|
|
485
511
|
|
|
486
512
|
<div class="method-heading">
|
|
487
513
|
<span class="method-name">post_process</span><span
|
|
488
|
-
class="method-args">(processor = nil)</span>
|
|
514
|
+
class="method-args">(processor = nil, options = {})</span>
|
|
489
515
|
<span class="method-click-advice">click to toggle source</span>
|
|
490
516
|
</div>
|
|
491
517
|
|
|
@@ -550,10 +576,10 @@ returns a hash with a single tracking of the following form:</p>
|
|
|
550
576
|
|
|
551
577
|
|
|
552
578
|
<div class="method-source-code" id="post_process-source">
|
|
553
|
-
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line
|
|
554
|
-
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_process</span> <span class="ruby-identifier">processor</span> = <span class="ruby-keyword">nil</span>
|
|
579
|
+
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 176</span>
|
|
580
|
+
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_process</span> <span class="ruby-identifier">processor</span> = <span class="ruby-keyword">nil</span>, <span class="ruby-identifier">options</span> = {}
|
|
555
581
|
<span class="ruby-identifier">raise</span> <span class="ruby-constant">PostProcessor</span><span class="ruby-operator">::</span><span class="ruby-constant">InvalidProcessor</span>.<span class="ruby-identifier">new</span> <span class="ruby-keyword">if</span> <span class="ruby-identifier">processor</span>.<span class="ruby-identifier">nil?</span> <span class="ruby-operator">&&</span> <span class="ruby-operator">!</span><span class="ruby-identifier">block_given?</span>
|
|
556
|
-
<span class="ruby-identifier">block_given?</span> <span class="ruby-operator">?</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(&<span class="ruby-constant">Proc</span>.<span class="ruby-identifier">new</span>) <span class="ruby-operator">:</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>)
|
|
582
|
+
<span class="ruby-identifier">block_given?</span> <span class="ruby-operator">?</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>, <span class="ruby-identifier">options</span>, &<span class="ruby-constant">Proc</span>.<span class="ruby-identifier">new</span>) <span class="ruby-operator">:</span> <span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">add</span>(<span class="ruby-identifier">processor</span>, <span class="ruby-identifier">options</span>)
|
|
557
583
|
<span class="ruby-keyword">end</span></pre>
|
|
558
584
|
</div><!-- post_process-source -->
|
|
559
585
|
|
|
@@ -581,7 +607,7 @@ returns a hash with a single tracking of the following form:</p>
|
|
|
581
607
|
|
|
582
608
|
|
|
583
609
|
<div class="method-source-code" id="post_processors-source">
|
|
584
|
-
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line
|
|
610
|
+
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 182</span>
|
|
585
611
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">post_processors</span>
|
|
586
612
|
<span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">all</span>
|
|
587
613
|
<span class="ruby-keyword">end</span></pre>
|
|
@@ -643,7 +669,7 @@ returns a hash with a single tracking of the following form:</p>
|
|
|
643
669
|
|
|
644
670
|
|
|
645
671
|
<div class="method-source-code" id="run_post_processors-21-source">
|
|
646
|
-
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line
|
|
672
|
+
<pre><span class="ruby-comment"># File lib/bigbench/post_processor.rb, line 187</span>
|
|
647
673
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">run_post_processors!</span>
|
|
648
674
|
<span class="ruby-constant">PostProcessor</span>.<span class="ruby-identifier">run!</span>
|
|
649
675
|
<span class="ruby-keyword">end</span></pre>
|
data/doc/BigBench/Benchmark.html
CHANGED
|
@@ -86,6 +86,8 @@
|
|
|
86
86
|
|
|
87
87
|
<li class="file"><a href="../Gemfile.html">Gemfile</a>
|
|
88
88
|
|
|
89
|
+
<li class="file"><a href="../README_rdoc.html">README</a>
|
|
90
|
+
|
|
89
91
|
<li class="file"><a href="../Rakefile.html">Rakefile</a>
|
|
90
92
|
|
|
91
93
|
<li class="file"><a href="../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -128,6 +130,26 @@
|
|
|
128
130
|
|
|
129
131
|
<li><a href="../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
130
132
|
|
|
133
|
+
<li><a href="../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
134
|
+
|
|
135
|
+
<li><a href="../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
136
|
+
|
|
137
|
+
<li><a href="../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
138
|
+
|
|
139
|
+
<li><a href="../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
140
|
+
|
|
141
|
+
<li><a href="../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
142
|
+
|
|
143
|
+
<li><a href="../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
144
|
+
|
|
145
|
+
<li><a href="../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
146
|
+
|
|
147
|
+
<li><a href="../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
148
|
+
|
|
149
|
+
<li><a href="../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
150
|
+
|
|
151
|
+
<li><a href="../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
152
|
+
|
|
131
153
|
<li><a href="../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
132
154
|
|
|
133
155
|
<li><a href="../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -146,6 +168,8 @@
|
|
|
146
168
|
|
|
147
169
|
<li><a href="../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
148
170
|
|
|
171
|
+
<li><a href="../Array.html">Array</a>
|
|
172
|
+
|
|
149
173
|
<li><a href="../EventMachineLoop.html">EventMachineLoop</a>
|
|
150
174
|
|
|
151
175
|
<li><a href="../Float.html">Float</a>
|
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
|
|
90
90
|
<li class="file"><a href="../../Gemfile.html">Gemfile</a>
|
|
91
91
|
|
|
92
|
+
<li class="file"><a href="../../README_rdoc.html">README</a>
|
|
93
|
+
|
|
92
94
|
<li class="file"><a href="../../Rakefile.html">Rakefile</a>
|
|
93
95
|
|
|
94
96
|
<li class="file"><a href="../../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -131,6 +133,26 @@
|
|
|
131
133
|
|
|
132
134
|
<li><a href="../../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
133
135
|
|
|
136
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
145
|
+
|
|
146
|
+
<li><a href="../../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
147
|
+
|
|
148
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
149
|
+
|
|
150
|
+
<li><a href="../../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
151
|
+
|
|
152
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
153
|
+
|
|
154
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
155
|
+
|
|
134
156
|
<li><a href="../../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
135
157
|
|
|
136
158
|
<li><a href="../../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -149,6 +171,8 @@
|
|
|
149
171
|
|
|
150
172
|
<li><a href="../../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
151
173
|
|
|
174
|
+
<li><a href="../../Array.html">Array</a>
|
|
175
|
+
|
|
152
176
|
<li><a href="../../EventMachineLoop.html">EventMachineLoop</a>
|
|
153
177
|
|
|
154
178
|
<li><a href="../../Float.html">Float</a>
|
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
|
|
90
90
|
<li class="file"><a href="../../Gemfile.html">Gemfile</a>
|
|
91
91
|
|
|
92
|
+
<li class="file"><a href="../../README_rdoc.html">README</a>
|
|
93
|
+
|
|
92
94
|
<li class="file"><a href="../../Rakefile.html">Rakefile</a>
|
|
93
95
|
|
|
94
96
|
<li class="file"><a href="../../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -131,6 +133,26 @@
|
|
|
131
133
|
|
|
132
134
|
<li><a href="../../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
133
135
|
|
|
136
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
145
|
+
|
|
146
|
+
<li><a href="../../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
147
|
+
|
|
148
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
149
|
+
|
|
150
|
+
<li><a href="../../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
151
|
+
|
|
152
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
153
|
+
|
|
154
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
155
|
+
|
|
134
156
|
<li><a href="../../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
135
157
|
|
|
136
158
|
<li><a href="../../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -149,6 +171,8 @@
|
|
|
149
171
|
|
|
150
172
|
<li><a href="../../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
151
173
|
|
|
174
|
+
<li><a href="../../Array.html">Array</a>
|
|
175
|
+
|
|
152
176
|
<li><a href="../../EventMachineLoop.html">EventMachineLoop</a>
|
|
153
177
|
|
|
154
178
|
<li><a href="../../Float.html">Float</a>
|
data/doc/BigBench/Bot.html
CHANGED
|
@@ -79,6 +79,8 @@
|
|
|
79
79
|
|
|
80
80
|
<li class="file"><a href="../Gemfile.html">Gemfile</a>
|
|
81
81
|
|
|
82
|
+
<li class="file"><a href="../README_rdoc.html">README</a>
|
|
83
|
+
|
|
82
84
|
<li class="file"><a href="../Rakefile.html">Rakefile</a>
|
|
83
85
|
|
|
84
86
|
<li class="file"><a href="../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -121,6 +123,26 @@
|
|
|
121
123
|
|
|
122
124
|
<li><a href="../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
123
125
|
|
|
126
|
+
<li><a href="../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
127
|
+
|
|
128
|
+
<li><a href="../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
129
|
+
|
|
130
|
+
<li><a href="../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
131
|
+
|
|
132
|
+
<li><a href="../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
133
|
+
|
|
134
|
+
<li><a href="../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
135
|
+
|
|
136
|
+
<li><a href="../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
145
|
+
|
|
124
146
|
<li><a href="../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
125
147
|
|
|
126
148
|
<li><a href="../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -139,6 +161,8 @@
|
|
|
139
161
|
|
|
140
162
|
<li><a href="../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
141
163
|
|
|
164
|
+
<li><a href="../Array.html">Array</a>
|
|
165
|
+
|
|
142
166
|
<li><a href="../EventMachineLoop.html">EventMachineLoop</a>
|
|
143
167
|
|
|
144
168
|
<li><a href="../Float.html">Float</a>
|
|
@@ -83,6 +83,8 @@
|
|
|
83
83
|
|
|
84
84
|
<li class="file"><a href="../Gemfile.html">Gemfile</a>
|
|
85
85
|
|
|
86
|
+
<li class="file"><a href="../README_rdoc.html">README</a>
|
|
87
|
+
|
|
86
88
|
<li class="file"><a href="../Rakefile.html">Rakefile</a>
|
|
87
89
|
|
|
88
90
|
<li class="file"><a href="../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -125,6 +127,26 @@
|
|
|
125
127
|
|
|
126
128
|
<li><a href="../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
127
129
|
|
|
130
|
+
<li><a href="../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
131
|
+
|
|
132
|
+
<li><a href="../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
133
|
+
|
|
134
|
+
<li><a href="../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
135
|
+
|
|
136
|
+
<li><a href="../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
145
|
+
|
|
146
|
+
<li><a href="../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
147
|
+
|
|
148
|
+
<li><a href="../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
149
|
+
|
|
128
150
|
<li><a href="../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
129
151
|
|
|
130
152
|
<li><a href="../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -143,6 +165,8 @@
|
|
|
143
165
|
|
|
144
166
|
<li><a href="../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
145
167
|
|
|
168
|
+
<li><a href="../Array.html">Array</a>
|
|
169
|
+
|
|
146
170
|
<li><a href="../EventMachineLoop.html">EventMachineLoop</a>
|
|
147
171
|
|
|
148
172
|
<li><a href="../Float.html">Float</a>
|
|
@@ -89,6 +89,8 @@
|
|
|
89
89
|
|
|
90
90
|
<li class="file"><a href="../../Gemfile.html">Gemfile</a>
|
|
91
91
|
|
|
92
|
+
<li class="file"><a href="../../README_rdoc.html">README</a>
|
|
93
|
+
|
|
92
94
|
<li class="file"><a href="../../Rakefile.html">Rakefile</a>
|
|
93
95
|
|
|
94
96
|
<li class="file"><a href="../../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -131,6 +133,26 @@
|
|
|
131
133
|
|
|
132
134
|
<li><a href="../../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
133
135
|
|
|
136
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
145
|
+
|
|
146
|
+
<li><a href="../../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
147
|
+
|
|
148
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
149
|
+
|
|
150
|
+
<li><a href="../../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
151
|
+
|
|
152
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
153
|
+
|
|
154
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
155
|
+
|
|
134
156
|
<li><a href="../../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
135
157
|
|
|
136
158
|
<li><a href="../../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -149,6 +171,8 @@
|
|
|
149
171
|
|
|
150
172
|
<li><a href="../../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
151
173
|
|
|
174
|
+
<li><a href="../../Array.html">Array</a>
|
|
175
|
+
|
|
152
176
|
<li><a href="../../EventMachineLoop.html">EventMachineLoop</a>
|
|
153
177
|
|
|
154
178
|
<li><a href="../../Float.html">Float</a>
|
|
@@ -85,6 +85,8 @@
|
|
|
85
85
|
|
|
86
86
|
<li class="file"><a href="../../Gemfile.html">Gemfile</a>
|
|
87
87
|
|
|
88
|
+
<li class="file"><a href="../../README_rdoc.html">README</a>
|
|
89
|
+
|
|
88
90
|
<li class="file"><a href="../../Rakefile.html">Rakefile</a>
|
|
89
91
|
|
|
90
92
|
<li class="file"><a href="../../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -127,6 +129,26 @@
|
|
|
127
129
|
|
|
128
130
|
<li><a href="../../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
129
131
|
|
|
132
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
133
|
+
|
|
134
|
+
<li><a href="../../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
135
|
+
|
|
136
|
+
<li><a href="../../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
145
|
+
|
|
146
|
+
<li><a href="../../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
147
|
+
|
|
148
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
149
|
+
|
|
150
|
+
<li><a href="../../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
151
|
+
|
|
130
152
|
<li><a href="../../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
131
153
|
|
|
132
154
|
<li><a href="../../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -145,6 +167,8 @@
|
|
|
145
167
|
|
|
146
168
|
<li><a href="../../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
147
169
|
|
|
170
|
+
<li><a href="../../Array.html">Array</a>
|
|
171
|
+
|
|
148
172
|
<li><a href="../../EventMachineLoop.html">EventMachineLoop</a>
|
|
149
173
|
|
|
150
174
|
<li><a href="../../Float.html">Float</a>
|
data/doc/BigBench/Executor.html
CHANGED
|
@@ -79,6 +79,8 @@
|
|
|
79
79
|
|
|
80
80
|
<li class="file"><a href="../Gemfile.html">Gemfile</a>
|
|
81
81
|
|
|
82
|
+
<li class="file"><a href="../README_rdoc.html">README</a>
|
|
83
|
+
|
|
82
84
|
<li class="file"><a href="../Rakefile.html">Rakefile</a>
|
|
83
85
|
|
|
84
86
|
<li class="file"><a href="../lib/bigbench/help/executor_txt.html">executor</a>
|
|
@@ -121,6 +123,26 @@
|
|
|
121
123
|
|
|
122
124
|
<li><a href="../BigBench/PostProcessor/Environment.html">BigBench::PostProcessor::Environment</a>
|
|
123
125
|
|
|
126
|
+
<li><a href="../BigBench/PostProcessor/Environment/Appearings.html">BigBench::PostProcessor::Environment::Appearings</a>
|
|
127
|
+
|
|
128
|
+
<li><a href="../BigBench/PostProcessor/Environment/AttributeCluster.html">BigBench::PostProcessor::Environment::AttributeCluster</a>
|
|
129
|
+
|
|
130
|
+
<li><a href="../BigBench/PostProcessor/Environment/BenchmarkNotFound.html">BigBench::PostProcessor::Environment::BenchmarkNotFound</a>
|
|
131
|
+
|
|
132
|
+
<li><a href="../BigBench/PostProcessor/Environment/Cluster.html">BigBench::PostProcessor::Environment::Cluster</a>
|
|
133
|
+
|
|
134
|
+
<li><a href="../BigBench/PostProcessor/Environment/NormalDistribution.html">BigBench::PostProcessor::Environment::NormalDistribution</a>
|
|
135
|
+
|
|
136
|
+
<li><a href="../BigBench/PostProcessor/Environment/PolynomialRegression.html">BigBench::PostProcessor::Environment::PolynomialRegression</a>
|
|
137
|
+
|
|
138
|
+
<li><a href="../BigBench/PostProcessor/Environment/Statistics.html">BigBench::PostProcessor::Environment::Statistics</a>
|
|
139
|
+
|
|
140
|
+
<li><a href="../BigBench/PostProcessor/Graphs.html">BigBench::PostProcessor::Graphs</a>
|
|
141
|
+
|
|
142
|
+
<li><a href="../BigBench/PostProcessor/Graphs/LineGraph.html">BigBench::PostProcessor::Graphs::LineGraph</a>
|
|
143
|
+
|
|
144
|
+
<li><a href="../BigBench/PostProcessor/Graphs/PieGraph.html">BigBench::PostProcessor::Graphs::PieGraph</a>
|
|
145
|
+
|
|
124
146
|
<li><a href="../BigBench/PostProcessor/InvalidProcessor.html">BigBench::PostProcessor::InvalidProcessor</a>
|
|
125
147
|
|
|
126
148
|
<li><a href="../BigBench/PostProcessor/Processor.html">BigBench::PostProcessor::Processor</a>
|
|
@@ -139,6 +161,8 @@
|
|
|
139
161
|
|
|
140
162
|
<li><a href="../BigBench/Tracker/Tracker.html">BigBench::Tracker::Tracker</a>
|
|
141
163
|
|
|
164
|
+
<li><a href="../Array.html">Array</a>
|
|
165
|
+
|
|
142
166
|
<li><a href="../EventMachineLoop.html">EventMachineLoop</a>
|
|
143
167
|
|
|
144
168
|
<li><a href="../Float.html">Float</a>
|
|
@@ -173,13 +197,19 @@ bigbench start bot [REDIS_URL_WITH_PORT REDIS_PASSWORD] # Starts a
|
|
|
173
197
|
# Reseting
|
|
174
198
|
bigbench reset all # Resets everything
|
|
175
199
|
|
|
200
|
+
# Post Processors
|
|
201
|
+
bigbench run postprocessors PATH_TO_TEST # Runs all post processors of the test without running the test itself
|
|
202
|
+
bigbench run postprocessor PATH_TO_TEST POSTPROCESSOR # Runs the specified post processor on the output file
|
|
203
|
+
|
|
176
204
|
# Help
|
|
177
205
|
bigbench --help || show help # Displays this help</pre>
|
|
178
206
|
|
|
179
207
|
<p>Options:</p>
|
|
180
208
|
|
|
181
|
-
<pre>REDIS_URL_WITH_PORT
|
|
182
|
-
REDIS_PASSWORD
|
|
209
|
+
<pre class="ruby"><span class="ruby-constant">REDIS_URL_WITH_PORT</span> <span class="ruby-comment"># Defaults to http://localhost:6379</span>
|
|
210
|
+
<span class="ruby-constant">REDIS_PASSWORD</span> <span class="ruby-comment"># Defaults to no password</span>
|
|
211
|
+
<span class="ruby-constant">POSTPROCESSOR</span> <span class="ruby-comment"># A post processor module or its short name e.g. 'statistics'</span>
|
|
212
|
+
</pre>
|
|
183
213
|
|
|
184
214
|
</div><!-- description -->
|
|
185
215
|
|
|
@@ -232,7 +262,7 @@ supplied via the commandline’s ARGV. It throws an
|
|
|
232
262
|
|
|
233
263
|
|
|
234
264
|
<div class="method-source-code" id="run-21-source">
|
|
235
|
-
<pre><span class="ruby-comment"># File lib/bigbench/executor.rb, line
|
|
265
|
+
<pre><span class="ruby-comment"># File lib/bigbench/executor.rb, line 32</span>
|
|
236
266
|
<span class="ruby-keyword">def</span> <span class="ruby-keyword">self</span>.<span class="ruby-identifier">run!</span>(<span class="ruby-identifier">argv</span>)
|
|
237
267
|
<span class="ruby-constant">BigBench</span><span class="ruby-operator">::</span><span class="ruby-constant">Output</span>.<span class="ruby-identifier">start</span>
|
|
238
268
|
|