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: c8dc0209bac326b147a2fe2c3e97d5133add16f3
4
- data.tar.gz: fd3b9ae962f0d9cc8c8b6d7495af91e8761a800a
3
+ metadata.gz: 73f4878270d9884938b58ad1fccc44d1294e2787
4
+ data.tar.gz: 58dd0651b70d7e169308e1c88f2558d81c98a99c
5
5
  SHA512:
6
- metadata.gz: d8301db0eb1da8f4e907bacf28313beb2d5b2e02396bfefa6f1ac76a802e377b728729ec43aeaffe127e53809a3a91e66147023c8c917a0cdf737d89b8fb85fa
7
- data.tar.gz: bcc1dc32601db99e8eec009554fa638885af4ba992475b64f0adb4f21847e87489f3592d2b08bc198a4cd97a6aa59c8195a96ef8383d63341357ae3ba8915c3d
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
- Metric.create! metric.attributes
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
@@ -1,7 +1,7 @@
1
1
  module ProcessMetrics
2
2
  module Persistence
3
3
  module ActiveRecord
4
- VERSION = "0.1.8"
4
+ VERSION = "0.1.9"
5
5
  end
6
6
  end
7
7
  end
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
- # ProcessMetrics::Persistence::ActiveRecord.setup!
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.8
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-26 00:00:00.000000000 Z
11
+ date: 2014-03-27 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activerecord