process_metrics_activerecord 0.1.10 → 0.1.11

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: 8daa85c0caddd3082bc97bcc30fbe6472f2e80fe
4
- data.tar.gz: 4165e55b81f9282fe9ce56acae4a824e0237a90e
3
+ metadata.gz: 4a3be5d9e946405ce039faf37305a0ca67a3ced9
4
+ data.tar.gz: 6d2e400b8ba0d92e726009a764002ea660c2bd46
5
5
  SHA512:
6
- metadata.gz: c374d7c1c51dd2360bbd09c8158a9d23ab172b2c196ddb5323d3a79ec7b49cf887ac5f7525b959402dbe23ea8689d8eb6be8a6ab745df44a7efcec4e052aadb8
7
- data.tar.gz: 526c00524fcc377e86e660bada2097b8377f699b8da0fcc8abca48ea9dd87cfcbd390dde681d3995d6c53909045d9622c58d4349e3b1b6cde8ea7dc7a8f259e2
6
+ metadata.gz: 36979b2af99b5e9b58c621c330fca241264ac3e9785510a5dbe09bd7e8c149f65756fe2c96f7fc2684f8ad9a71598206cfbf884c6c1f8c940eefb343b65eb5dd
7
+ data.tar.gz: d2beebacd490f6b0649cb78444277fa3f9aad0bc9c76ca4617c01fd3887e5843423266f532ce0f131a12782d87197d093ad64557aabfcbaf3c25e8486136ba8b
@@ -30,7 +30,15 @@ module ProcessMetrics
30
30
  ::ActiveRecord::Base.connection_pool.with_connection do
31
31
  metric_attributes = metric.attributes.with_indifferent_access
32
32
 
33
- Metric.find_or_create_by_parent_uuid metric_attributes[:parent_uuid] if metric_attributes[:parent_uuid]
33
+ parent_metric = Metric.find_or_create_by_parent_uuid metric_attributes[:parent_uuid] if metric_attributes[:parent_uuid]
34
+ if parent_metric
35
+ parent_metric.started_at ||= metric_attributes[:started_at]
36
+ parent_metric.finished_at ||= metric_attributes[:finished_at]
37
+
38
+ parent_metric.started_at = metric_attributes[:started_at] if metric_attributes[:started_at] < parent_metric.started_at
39
+ parent_metric.finished_at = metric_attributes[:finished_at] if metric_attributes[:finished_at] > parent_metric.finished_at
40
+ parent_metric.save
41
+ end
34
42
 
35
43
  metric = Metric.new
36
44
  metric.uuid = metric_attributes[:uuid]
@@ -2,6 +2,7 @@ module ProcessMetrics
2
2
  module Persistence
3
3
  module ActiveRecord
4
4
  class Metric < ::ActiveRecord::Base
5
+ self.primary_key = :uuid
5
6
  end
6
7
  end
7
8
  end
@@ -1,7 +1,7 @@
1
1
  module ProcessMetrics
2
2
  module Persistence
3
3
  module ActiveRecord
4
- VERSION = "0.1.10"
4
+ VERSION = "0.1.11"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: process_metrics_activerecord
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.10
4
+ version: 0.1.11
5
5
  platform: ruby
6
6
  authors:
7
7
  - Lucas Uyezu