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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a3be5d9e946405ce039faf37305a0ca67a3ced9
|
4
|
+
data.tar.gz: 6d2e400b8ba0d92e726009a764002ea660c2bd46
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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]
|