-
Notifications
You must be signed in to change notification settings - Fork 29
/
stats.rb
58 lines (50 loc) · 1.53 KB
/
stats.rb
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
47
48
49
50
51
52
53
54
55
56
57
58
require 'consul/async/utilities'
module Consul
module Async
# Object keeping stats about a single Endpoint
# Accessible within the .stats of a EndPoint
class EndPointStats
attr_reader :successes, :errors, :consecutive_errors, :start, :body_bytes, :last_error, :last_success, :last_modified, :changes, :network_bytes
def initialize
@start = Time.now.utc
@successes = 0
@errors = 0
@body_bytes = 0
@changes = 0
@network_bytes = 0
@last_error = @start
@last_success = @start
@last_modified = @start
@consecutive_errors = 0
end
def on_response(res)
@last_success = Time.now.utc
@successes += 1
@body_bytes += res.http.response.bytesize
@changes += 1 if res.modified?
@last_modified = @last_success if res.modified?
@consecutive_errors = 0
@network_bytes += res.http.response_header['Content-Length'].to_i
end
def on_error(_http)
@last_error = Time.now.utc
@errors += 1
@consecutive_errors += 1
end
def bytes_per_sec(now = Time.now.utc)
diff = (now - start)
diff = 1 if diff < 1
(body_bytes / diff).round(0)
end
def bytes_per_sec_human(now = Time.now.utc)
"#{Utilities.bytes_to_h(bytes_per_sec(now))}/s"
end
def body_bytes_human
Utilities.bytes_to_h(body_bytes)
end
def last_success_or_error
[@last_error, @last_success].max
end
end
end
end