Class: Mongrel::Stats
- Inherits:
-
Object
- Object
- Mongrel::Stats
- Defined in:
- lib/mongrel/stats.rb
Instance Attribute Summary collapse
-
#max ⇒ Object
readonly
Returns the value of attribute max.
-
#min ⇒ Object
readonly
Returns the value of attribute min.
-
#n ⇒ Object
readonly
Returns the value of attribute n.
-
#sum ⇒ Object
readonly
Returns the value of attribute sum.
-
#sumsq ⇒ Object
readonly
Returns the value of attribute sumsq.
Instance Method Summary collapse
-
#dump(msg = "", out = STDERR) ⇒ Object
Dump this Stats object with an optional additional message.
-
#initialize(name) ⇒ Stats
constructor
A new instance of Stats.
-
#mean ⇒ Object
Calculates and returns the mean for the data passed so far.
-
#reset ⇒ Object
Resets the internal counters so you can start sampling again.
-
#sample(s) ⇒ Object
Adds a sampling to the calculations.
-
#sd ⇒ Object
Calculates the standard deviation of the data so far.
-
#tick ⇒ Object
Adds a time delta between now and the last time you called this.
-
#to_s ⇒ Object
Returns a common display (used by dump).
Constructor Details
#initialize(name) ⇒ Stats
Returns a new instance of Stats.
19 20 21 22 |
# File 'lib/mongrel/stats.rb', line 19 def initialize(name) @name = name reset end |
Instance Attribute Details
#max ⇒ Object (readonly)
Returns the value of attribute max.
17 18 19 |
# File 'lib/mongrel/stats.rb', line 17 def max @max end |
#min ⇒ Object (readonly)
Returns the value of attribute min.
17 18 19 |
# File 'lib/mongrel/stats.rb', line 17 def min @min end |
#n ⇒ Object (readonly)
Returns the value of attribute n.
17 18 19 |
# File 'lib/mongrel/stats.rb', line 17 def n @n end |
#sum ⇒ Object (readonly)
Returns the value of attribute sum.
17 18 19 |
# File 'lib/mongrel/stats.rb', line 17 def sum @sum end |
#sumsq ⇒ Object (readonly)
Returns the value of attribute sumsq.
17 18 19 |
# File 'lib/mongrel/stats.rb', line 17 def sumsq @sumsq end |
Instance Method Details
#dump(msg = "", out = STDERR) ⇒ Object
Dump this Stats object with an optional additional message.
48 49 50 |
# File 'lib/mongrel/stats.rb', line 48 def dump(msg = "", out=STDERR) out.puts "#{msg}: #{self.to_s}" end |
#mean ⇒ Object
Calculates and returns the mean for the data passed so far.
59 60 61 |
# File 'lib/mongrel/stats.rb', line 59 def mean @sum / @n end |
#reset ⇒ Object
Resets the internal counters so you can start sampling again.
25 26 27 28 29 30 31 32 |
# File 'lib/mongrel/stats.rb', line 25 def reset @sum = 0.0 @sumsq = 0.0 @last_time = Time.new @n = 0.0 @min = 0.0 @max = 0.0 end |
#sample(s) ⇒ Object
Adds a sampling to the calculations.
35 36 37 38 39 40 41 42 43 44 45 |
# File 'lib/mongrel/stats.rb', line 35 def sample(s) @sum += s @sumsq += s * s if @n == 0 @min = @max = s else @min = s if @min > s @max = s if @max < s end @n+=1 end |
#sd ⇒ Object
Calculates the standard deviation of the data so far.
64 65 66 67 68 69 70 71 |
# File 'lib/mongrel/stats.rb', line 64 def sd # (sqrt( ((s).sumsq - ( (s).sum * (s).sum / (s).n)) / ((s).n-1) )) begin return Math.sqrt( (@sumsq - ( @sum * @sum / @n)) / (@n-1) ) rescue Errno::EDOM return 0.0 end end |
#tick ⇒ Object
83 84 85 86 87 |
# File 'lib/mongrel/stats.rb', line 83 def tick now = Time.now sample(now - @last_time) @last_time = now end |
#to_s ⇒ Object
Returns a common display (used by dump)
53 54 55 |
# File 'lib/mongrel/stats.rb', line 53 def to_s "[#{@name}]: SUM=%0.4f, SUMSQ=%0.4f, N=%0.4f, MEAN=%0.4f, SD=%0.4f, MIN=%0.4f, MAX=%0.4f" % [@sum, @sumsq, @n, mean, sd, @min, @max] end |