http_api_client 0.2.1 → 0.2.2
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/README.md +3 -0
- data/lib/http_api_client/timed_result.rb +22 -20
- data/lib/http_api_client/version.rb +1 -1
- data/spec/http_client/timed_result_spec.rb +1 -1
- metadata +1 -1
data/README.md
CHANGED
@@ -167,3 +167,6 @@ This will install `/usr/local/opt/curl-ca-bundle/share/ca-bundle.crt`
|
|
167
167
|
|
168
168
|
### 0.2.1 - 2014-04-08
|
169
169
|
* A couple of code cleanup actions
|
170
|
+
|
171
|
+
### 0.2.2 - 2014-04-08
|
172
|
+
* TimedResult class is now no longer in the global namespace. It is in the HttpApiClient namespace now. Fixes problems with name collisions
|
@@ -1,30 +1,32 @@
|
|
1
1
|
# encoding: utf-8
|
2
|
-
|
2
|
+
module HttpApiClient
|
3
|
+
class TimedResult
|
3
4
|
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
5
|
+
def self.time(event, log_data = {})
|
6
|
+
start_time = Time.now
|
7
|
+
yield
|
8
|
+
ensure
|
8
9
|
|
9
|
-
|
10
|
+
time = millis_since(start_time)
|
10
11
|
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
12
|
+
log_entries = ["event_name=#{event}"]
|
13
|
+
log_entries << "request_id=#{Thread.current[:request_id]}" if Thread.current[:request_id]
|
14
|
+
log_entries << "timing=#{time}"
|
15
|
+
log_entries.concat(as_log_entries(log_data))
|
15
16
|
|
16
|
-
|
17
|
+
HttpApiClient.logger.info(log_entries.join(", "))
|
17
18
|
|
18
|
-
|
19
|
+
end
|
19
20
|
|
20
|
-
|
21
|
-
|
22
|
-
|
21
|
+
def self.millis_since(start_time)
|
22
|
+
(Time.now - start_time) * 1000
|
23
|
+
end
|
23
24
|
|
24
|
-
|
25
|
-
|
26
|
-
|
25
|
+
def self.as_log_entries(hash)
|
26
|
+
hash.inject [] do |result, entry|
|
27
|
+
result << "#{entry[0]}=#{entry[1]}"
|
28
|
+
end
|
27
29
|
end
|
28
|
-
end
|
29
30
|
|
30
|
-
end
|
31
|
+
end
|
32
|
+
end
|