opentelemetry-instrumentation-rails 0.31.1 → 0.31.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 71a0b87bbab7841f703055efd8e266c1794f3f2d5ecfd7a1ffc3b5c98a4e2f1a
4
- data.tar.gz: 7b90a6cc34403f82e83801b320d4b2ee03c7e2a8f5fd73e09dd91d755429eb44
3
+ metadata.gz: fdd361eda3f4db266c0b5ea503544de6a09aab6166272f4fa6236540b9a7a653
4
+ data.tar.gz: 8aed107b9874ef6b157cae1ac00ff0a2e408b2a7843b96da2ecf7b86055c74ea
5
5
  SHA512:
6
- metadata.gz: 4527d1f72b1cf729d478f99984603dd22c4ed5755b8971834faaafdd536b86ec3fe815d436cd4987d6d324075531d7f579bb08e296d174bf33b371bf0717f64f
7
- data.tar.gz: a92977b05b4f9a701a385dc1cc82eee1ded7f3038a251ea22704bbdcb879a4b99427ef20e4a0a62cb9c4a1936331df318653bc6016edd451a1ec1f70b6e9bbd4
6
+ metadata.gz: 1c18420c295bc6533731432fad6ac25a006b688b299fb8194b9d25936ff3f2e7196a44b5b68053a0946148df2ce761443ea90c7c11441ec5b2628d4909296658
7
+ data.tar.gz: d6407cd0baf05972f0bc7e0bd1d868c5d168f4e67771f83e91fe7a646ac0fff49de4ed05d44874ef11e0b9ba96d24a5eb887a9a39775c4696492bc1076365415
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History: opentelemetry-instrumentation-rails
2
2
 
3
+ ### v0.31.2 / 2024-08-15
4
+
5
+ * FIXED: Rails instrumentation should load ActiveJob instrumentation
6
+
3
7
  ### v0.31.1 / 2024-07-23
4
8
 
5
9
  * DOCS: Add cspell to CI
data/README.md CHANGED
@@ -55,6 +55,7 @@ gem "opentelemetry-instrumentation-rails", require: "opentelemetry/instrumentati
55
55
  The Rails instrumentation attempts to mirror the structure of the Ruby on Rails. It is a collection of instrumentation gems for components of Rails such as Action View, Active Record, Action Pack, etc...
56
56
 
57
57
  You may want to include all of the Rails instrumentation but disable a single instrumentation gem that it includes. Here is an example of how you can disable Active Record when using this instrumentation gem.
58
+
58
59
  ```ruby
59
60
  OpenTelemetry::SDK.configure do |c|
60
61
  c.use_all({ 'OpenTelemetry::Instrumentation::ActiveRecord' => { enabled: false } })
@@ -69,7 +70,7 @@ Example usage can be seen in the `./example/trace_demonstration.rb` file [here](
69
70
 
70
71
  The `opentelemetry-instrumentation-rails` gem source is [on github][repo-github], along with related gems including `opentelemetry-api` and `opentelemetry-sdk`.
71
72
 
72
- The OpenTelemetry Ruby gems are maintained by the OpenTelemetry-Ruby special interest group (SIG). You can get involved by joining us in [GitHub Discussions][discussions-url] or attending our weekly meeting. See the [meeting calendar][community-meetings] for dates and times. For more information on this and other language SIGs, see the OpenTelemetry [community page][ruby-sig].
73
+ The OpenTelemetry Ruby gems are maintained by the OpenTelemetry Ruby special interest group (SIG). You can get involved by joining us on our [GitHub Discussions][discussions-url], [Slack Channel][slack-channel] or attending our weekly meeting. See the [meeting calendar][community-meetings] for dates and times. For more information on this and other language SIGs, see the OpenTelemetry [community page][ruby-sig].
73
74
 
74
75
  ## License
75
76
 
@@ -81,4 +82,5 @@ The `opentelemetry-instrumentation-rails` gem is distributed under the Apache 2.
81
82
  [license-github]: https://github.com/open-telemetry/opentelemetry-ruby-contrib/blob/main/LICENSE
82
83
  [ruby-sig]: https://github.com/open-telemetry/community#ruby-sig
83
84
  [community-meetings]: https://github.com/open-telemetry/community#community-meetings
85
+ [slack-channel]: https://cloud-native.slack.com/archives/C01NWKKMKMY
84
86
  [discussions-url]: https://github.com/open-telemetry/opentelemetry-ruby/discussions
@@ -7,7 +7,7 @@
7
7
  module OpenTelemetry
8
8
  module Instrumentation
9
9
  module Rails
10
- VERSION = '0.31.1'
10
+ VERSION = '0.31.2'
11
11
  end
12
12
  end
13
13
  end
@@ -20,5 +20,6 @@ require 'opentelemetry-instrumentation-active_support'
20
20
  require 'opentelemetry-instrumentation-action_view'
21
21
  require 'opentelemetry-instrumentation-action_mailer'
22
22
  require 'opentelemetry-instrumentation-active_record'
23
+ require 'opentelemetry-instrumentation-active_job'
23
24
  require_relative 'rails/instrumentation'
24
25
  require_relative 'rails/version'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-instrumentation-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.31.1
4
+ version: 0.31.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-07-24 00:00:00.000000000 Z
11
+ date: 2024-08-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opentelemetry-api