opentelemetry-instrumentation-rails 0.31.0 → 0.31.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -2
- data/README.md +3 -1
- data/lib/opentelemetry/instrumentation/rails/version.rb +1 -1
- data/lib/opentelemetry/instrumentation/rails.rb +1 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fdd361eda3f4db266c0b5ea503544de6a09aab6166272f4fa6236540b9a7a653
|
4
|
+
data.tar.gz: 8aed107b9874ef6b157cae1ac00ff0a2e408b2a7843b96da2ecf7b86055c74ea
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1c18420c295bc6533731432fad6ac25a006b688b299fb8194b9d25936ff3f2e7196a44b5b68053a0946148df2ce761443ea90c7c11441ec5b2628d4909296658
|
7
|
+
data.tar.gz: d6407cd0baf05972f0bc7e0bd1d868c5d168f4e67771f83e91fe7a646ac0fff49de4ed05d44874ef11e0b9ba96d24a5eb887a9a39775c4696492bc1076365415
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
7
|
+
### v0.31.1 / 2024-07-23
|
8
|
+
|
9
|
+
* DOCS: Add cspell to CI
|
10
|
+
|
3
11
|
### v0.31.0 / 2024-07-02
|
4
12
|
|
5
13
|
* DOCS: Fix CHANGELOGs to reflect a past breaking change
|
@@ -87,7 +95,7 @@
|
|
87
95
|
|
88
96
|
### v0.20.0 / 2021-12-01
|
89
97
|
|
90
|
-
* ADDED: Move activesupport notification
|
98
|
+
* ADDED: Move activesupport notification subscriber out of action_view gem
|
91
99
|
* FIXED: Instrumentation of Rails 7
|
92
100
|
|
93
101
|
### v0.19.4 / 2021-10-06
|
@@ -123,7 +131,7 @@
|
|
123
131
|
|
124
132
|
### v0.18.0 / 2021-05-21
|
125
133
|
|
126
|
-
* ADDED: Updated API
|
134
|
+
* ADDED: Updated API dependency for 1.0.0.rc1
|
127
135
|
|
128
136
|
### v0.17.0 / 2021-04-22
|
129
137
|
|
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
|
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
|
@@ -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.
|
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-
|
11
|
+
date: 2024-08-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -226,14 +226,14 @@ dependencies:
|
|
226
226
|
requirements:
|
227
227
|
- - "~>"
|
228
228
|
- !ruby/object:Gem::Version
|
229
|
-
version: 1.
|
229
|
+
version: 1.65.0
|
230
230
|
type: :development
|
231
231
|
prerelease: false
|
232
232
|
version_requirements: !ruby/object:Gem::Requirement
|
233
233
|
requirements:
|
234
234
|
- - "~>"
|
235
235
|
- !ruby/object:Gem::Version
|
236
|
-
version: 1.
|
236
|
+
version: 1.65.0
|
237
237
|
- !ruby/object:Gem::Dependency
|
238
238
|
name: rubocop-performance
|
239
239
|
requirement: !ruby/object:Gem::Requirement
|