process_metrics_activerecord 0.1.8 → 0.1.9
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.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 73f4878270d9884938b58ad1fccc44d1294e2787
|
4
|
+
data.tar.gz: 58dd0651b70d7e169308e1c88f2558d81c98a99c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e5e4c3138e27e137b69a24e738d7aae71e7acb3bcd84c958282743c18e1c12d364dc652a7cb4b70d57e496729b985a5adc2daf7a46143545790025320fff64a
|
7
|
+
data.tar.gz: 9c90a96389bc6252543d4f15d85d1d02ba524e13a7cf9b82c755fff0b76dccf0ec903c1492d27eabb428ea9a3d875e493c9b2b328f082e6004ee9f332907cebd
|
@@ -28,7 +28,15 @@ module ProcessMetrics
|
|
28
28
|
def self.save metric
|
29
29
|
begin
|
30
30
|
::ActiveRecord::Base.connection_pool.with_connection do
|
31
|
-
|
31
|
+
metric_attributes = metric.attributes.with_indifferent_access
|
32
|
+
metric = Metric.new
|
33
|
+
metric.uuid = metric_attributes[:uuid]
|
34
|
+
metric.parent_uuid = metric_attributes[:parent_uuid]
|
35
|
+
metric.name = metric_attributes[:name]
|
36
|
+
metric.data = metric_attributes[:data]
|
37
|
+
metric.started_at = metric_attributes[:started_at]
|
38
|
+
metric.finished_at = metric_attributes[:finished_at]
|
39
|
+
metric.save!
|
32
40
|
end
|
33
41
|
rescue
|
34
42
|
ProcessMetrics.config.logger.error $!.message
|
data/test/test_simple.rb
CHANGED
@@ -8,14 +8,15 @@ ProcessMetrics::Persistence::ActiveRecord.connection = {
|
|
8
8
|
}
|
9
9
|
|
10
10
|
# ProcessMetrics::Persistence::ActiveRecord.table_name = 'onon'
|
11
|
-
|
11
|
+
ProcessMetrics::Persistence::ActiveRecord.setup!
|
12
12
|
|
13
13
|
class MyClass
|
14
14
|
include ProcessMetrics::Timer
|
15
15
|
measure :do_simple_work,
|
16
16
|
:do_work_with_params,
|
17
17
|
:do_work_with_block,
|
18
|
-
:do_work_with_params_and_block
|
18
|
+
:do_work_with_params_and_block,
|
19
|
+
:do_terrible_work
|
19
20
|
|
20
21
|
attr_accessor :my_var
|
21
22
|
|
@@ -39,6 +40,10 @@ class MyClass
|
|
39
40
|
@my_var += user_id + 5
|
40
41
|
block.call self
|
41
42
|
end
|
43
|
+
|
44
|
+
def do_terrible_work
|
45
|
+
raise "oh no!"
|
46
|
+
end
|
42
47
|
end
|
43
48
|
|
44
49
|
|
@@ -95,6 +100,11 @@ class MyChildStringClass
|
|
95
100
|
end
|
96
101
|
|
97
102
|
class TestBlock < Minitest::Test
|
103
|
+
def test_unfinished_job
|
104
|
+
my_object = MyClass.new(1)
|
105
|
+
assert_raises(RuntimeError) { my_object.do_terrible_work }
|
106
|
+
end
|
107
|
+
|
98
108
|
def test_simple_method
|
99
109
|
my_object = MyClass.new(1)
|
100
110
|
my_object.do_simple_work
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: process_metrics_activerecord
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.9
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Lucas Uyezu
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-03-
|
11
|
+
date: 2014-03-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activerecord
|