blob: 0778d6d1e63a67b2bafef3bbdc94a920e35c2cb0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
|
module Oxidized
class Node
class Stats
MAX_STAT = 10
# @param [Job] job job whose information add to stats
# @return [void]
def add job
stat = {
:start => job.start,
:end => job.end,
:time => job.time,
}
@stats[job.status] ||= []
@stats[job.status].shift if @stats[job.status].size > MAX_STAT
@stats[job.status].push stat
@stats[:counter][job.status] += 1
end
# @param [Symbol] status stats for specific status
# @return [Hash,Array] Hash of stats for every status or Array of stats for specific status
def get status = nil
status ? @stats[status] : @stats
end
def get_counter counter = nil
counter ? @stats[:counter][counter] : @stats[:counter]
end
def successes
@stats[:counter][:success]
end
def failures
@stats[:counter].reduce(0) { |m, h| h[0] == :success ? m : m + h[1] }
end
private
def initialize
@stats = {}
@stats[:counter] = Hash.new 0
end
end
end
end
|