sapience 0.1.4 → 0.1.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/lib/sapience/appender/datadog.rb +6 -2
- data/lib/sapience/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 78c16638deb885ad6b022355c8122c6d2b04abf1
|
4
|
+
data.tar.gz: ac30e445702caf63218ee9cbe8231ae4d3136959
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fa40581925e5d0f63b433f3cf845e68fc8ca36c699640cdaa64f65797dbfc3c8959d8720e0941a5754680c171692322af6a2c6bfc843ac549795709ea4277784
|
7
|
+
data.tar.gz: f14ffb78c47bd8fe3d68bd90292d4b0d04f3ff6404bc6930e86d9fe7cf876753820f7ee105671fed1a4c1a55190d762ba7c9ccae0e8b77fdd263d332717ccca9
|
data/CHANGELOG.md
CHANGED
@@ -84,14 +84,18 @@ module Sapience
|
|
84
84
|
provider.histogram(metric, amount)
|
85
85
|
end
|
86
86
|
|
87
|
-
def gauge(metric, amount, hash)
|
87
|
+
def gauge(metric, amount, hash = {})
|
88
88
|
provider.gauge(metric, amount, hash)
|
89
89
|
end
|
90
90
|
|
91
|
-
def count(metric, amount, hash)
|
91
|
+
def count(metric, amount, hash = {})
|
92
92
|
provider.count(metric, amount, hash)
|
93
93
|
end
|
94
94
|
|
95
|
+
def time(metric, &block)
|
96
|
+
provider.time(metric, &block)
|
97
|
+
end
|
98
|
+
|
95
99
|
def batch
|
96
100
|
yield provider
|
97
101
|
end
|
data/lib/sapience/version.rb
CHANGED