opentelemetry-instrumentation-action_pack 0.14.1 → 0.15.0
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 +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +1 -3
- data/lib/opentelemetry/instrumentation/action_pack/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 935f5ea28d0a59afef3fc95ed8f00b3f3cf8dc25a62be768c87eb21a2b8b7b71
|
4
|
+
data.tar.gz: 9360446fd4808a951ed4106393faf202c2a51eb49870c185d4da1f5e364e10a4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 16edfea4d043110ffea08e3261b2af2d8878f889ef2aaf05732d36b8ef73c69acf25201e0c4f73e1ae57303f22ff9654abe7e0dd60801eab2619b13a58d823be
|
7
|
+
data.tar.gz: 11505de27bcec2c46968ea173204ffcd5fb0ae5e1c26561bb3b2ac434819e1740a2838b2b9d5c200327fa42db82c0eb89c753c3a43d952938ac81cc27d707aef
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,11 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-action_pack
|
2
2
|
|
3
|
+
### v0.15.0 / 2025-10-21
|
4
|
+
|
5
|
+
* BREAKING CHANGE: Min Ruby Version 3.2 and Rails 7.1
|
6
|
+
|
7
|
+
* ADDED: Min Ruby Version 3.2 and Rails 7.1
|
8
|
+
|
3
9
|
### v0.14.1 / 2025-10-07
|
4
10
|
|
5
11
|
* FIXED: Unify rack middleware_args
|
data/README.md
CHANGED
@@ -48,8 +48,6 @@ This instrumentation generally uses [HTTP server semantic conventions](https://o
|
|
48
48
|
|
49
49
|
For Rails 7.1+, the span name is updated to match the HTTP method and route that was matched for the request using [`ActionDispatch::Request#route_uri_pattern`](https://api.rubyonrails.org/classes/ActionDispatch/Request.html#method-i-route_uri_pattern), e.g.: `GET /users/:id`
|
50
50
|
|
51
|
-
For older versions of Rails the span name is updated to match the HTTP method, controller, and action name that was the target of the request, e.g.: `GET /example/index`
|
52
|
-
|
53
51
|
> ![NOTE]: Users may override the `span_naming` option to default to Legacy Span Naming Behavior that uses the controller's class name and action in Ruby documentation syntax, e.g. `ExampleController#index`.
|
54
52
|
|
55
53
|
This instrumentation does not emit any custom attributes.
|
@@ -58,7 +56,7 @@ This instrumentation does not emit any custom attributes.
|
|
58
56
|
| - | - | - |
|
59
57
|
| `code.namespace` | String | `ActionController` class name |
|
60
58
|
| `code.function` | String | `ActionController` action name e.g. `index`, `show`, `edit`, etc... |
|
61
|
-
| `http.route` | String |
|
59
|
+
| `http.route` | String | The route that was matched for the request |
|
62
60
|
| `http.target` | String | The `request.filtered_path` |
|
63
61
|
|
64
62
|
### Error Handling for Action Controller
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-action_pack
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.15.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- OpenTelemetry Authors
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-10-
|
11
|
+
date: 2025-10-21 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-instrumentation-rack
|
@@ -47,10 +47,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby-contrib
|
|
47
47
|
licenses:
|
48
48
|
- Apache-2.0
|
49
49
|
metadata:
|
50
|
-
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.
|
50
|
+
changelog_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.15.0/file/CHANGELOG.md
|
51
51
|
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/tree/main/instrumentation/action_pack
|
52
52
|
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby-contrib/issues
|
53
|
-
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.
|
53
|
+
documentation_uri: https://rubydoc.info/gems/opentelemetry-instrumentation-action_pack/0.15.0
|
54
54
|
post_install_message:
|
55
55
|
rdoc_options: []
|
56
56
|
require_paths:
|
@@ -59,14 +59,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
59
59
|
requirements:
|
60
60
|
- - ">="
|
61
61
|
- !ruby/object:Gem::Version
|
62
|
-
version: '3.
|
62
|
+
version: '3.2'
|
63
63
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
64
64
|
requirements:
|
65
65
|
- - ">="
|
66
66
|
- !ruby/object:Gem::Version
|
67
67
|
version: '0'
|
68
68
|
requirements: []
|
69
|
-
rubygems_version: 3.
|
69
|
+
rubygems_version: 3.4.19
|
70
70
|
signing_key:
|
71
71
|
specification_version: 4
|
72
72
|
summary: ActionPack instrumentation for the OpenTelemetry framework
|