log_bench 0.5.1 → 0.5.2

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
  SHA256:
3
- metadata.gz: 7c2d50ada733ae04ce5cfdfdf02b676efb555456f9578b24cf82a5e3985e339f
4
- data.tar.gz: de27a1741e63115c4aa4c35bb7ed35823a8fe722ff0067fe6901ce2c42599295
3
+ metadata.gz: c16c232332f3594f9e7d651a3ee85a5727030c0d4f903b0ebc6b3c1658943e08
4
+ data.tar.gz: 19554a7cf8a893be6c6d7317a62c3cf561014ed75771a4bffaec7090b5c1ef21
5
5
  SHA512:
6
- metadata.gz: 7b03dc3daa739c3b0f2b6fedb33013515f8da626f80c2c4f68c47ac86fa39351510ec6735812890ad72df7b58d1cdcbc762798f236939579c130542065c08118
7
- data.tar.gz: f5cff1495402c5dd22bd16ce288a7d11bbf80fc41d0bff0abd2dc95b56b0db290168531a087dcadd827f89ed548ebc3933353013fe2af65c64fb535fc1d5ff64
6
+ metadata.gz: 2d2fc425a9740acd833de171e45ef1f9c9ed1a07b352ac9ddbae66d344d806e313e77e1176ef51026a6167dff6e6146d3dbf8e4f1b868a66d40dd3d71a12e4b3
7
+ data.tar.gz: 4763e264ac27482fad2f5062b7eba0fa95066784a4c7b41f55902b000692488c5f6067284d88d06333b833bfb1760b6864d2f41c5bc299bc4a89f64887fc40d1
@@ -113,7 +113,18 @@ module LogBench
113
113
  return unless entry.is_a?(JobEnqueueEntry)
114
114
  return unless defined?(App::State)
115
115
 
116
- App::State.instance.register_job_enqueue(entry.job_id, entry.request_id)
116
+ # If entry has a request_id, use it directly
117
+ request_id = entry.request_id
118
+
119
+ # If no request_id, check if this enqueue happened inside another job
120
+ # by looking at the tags to find the parent job's request_id
121
+ if !request_id && entry.respond_to?(:json_data)
122
+ tags = entry.json_data["tags"]
123
+ parent_job_id, _parent_job_class = extract_job_info_from_tags(tags)
124
+ request_id = App::State.instance.request_id_for_job(parent_job_id) if parent_job_id
125
+ end
126
+
127
+ App::State.instance.register_job_enqueue(entry.job_id, request_id)
117
128
  end
118
129
 
119
130
  # Enrich job execution logs with request_id and colored prefix
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module LogBench
4
- VERSION = "0.5.1"
4
+ VERSION = "0.5.2"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: log_bench
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.1
4
+ version: 0.5.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Benjamín Silva