opentelemetry-instrumentation-ethon 0.6.0 → 0.11.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/.yardopts +9 -0
- data/CHANGELOG.md +27 -0
- data/LICENSE +1 -1
- data/README.md +54 -0
- data/lib/opentelemetry-instrumentation-ethon.rb +1 -1
- data/lib/opentelemetry/instrumentation.rb +7 -1
- data/lib/opentelemetry/instrumentation/ethon.rb +1 -1
- data/lib/opentelemetry/instrumentation/ethon/instrumentation.rb +1 -1
- data/lib/opentelemetry/instrumentation/ethon/patches/easy.rb +3 -3
- data/lib/opentelemetry/instrumentation/ethon/patches/multi.rb +1 -1
- data/lib/opentelemetry/instrumentation/ethon/version.rb +2 -2
- metadata +12 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc930d87a1478617a8f116c720fdd723ad38f610a78a80836b5f0e090f86a8e9
|
4
|
+
data.tar.gz: ed9782afedffb22b2c6452deed2dfff22ca92e15e8321cba41764c1154d81022
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9a54b224189b2f47357b655074c10c4957ce852789bbaf88039ee23714e6c2f8290d4127ab9a51f79a3f4e7851ab03fb5c872b74755645bfc7633c60ba4b32f5
|
7
|
+
data.tar.gz: 75cbaebf632305b37166c228441f396483ef02ff5bc6ae52c7b67c7450f53a81b51ddfb85c9ee6775465f9d6144c91e5b5b28c649d2f6fc43365f354686256b1
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,32 @@
|
|
1
1
|
# Release History: opentelemetry-instrumentation-ethon
|
2
2
|
|
3
|
+
### v0.11.0 / 2020-12-11
|
4
|
+
|
5
|
+
* FIXED: Copyright comments to not reference year
|
6
|
+
|
7
|
+
### v0.10.0 / 2020-12-03
|
8
|
+
|
9
|
+
* (No significant changes)
|
10
|
+
|
11
|
+
### v0.9.0 / 2020-11-27
|
12
|
+
|
13
|
+
* BREAKING CHANGE: Add timeout for force_flush and shutdown
|
14
|
+
|
15
|
+
* ADDED: Add timeout for force_flush and shutdown
|
16
|
+
|
17
|
+
### v0.8.0 / 2020-10-27
|
18
|
+
|
19
|
+
* BREAKING CHANGE: Move context/span methods to Trace module
|
20
|
+
* BREAKING CHANGE: Remove 'canonical' from status codes
|
21
|
+
|
22
|
+
* FIXED: Move context/span methods to Trace module
|
23
|
+
* FIXED: Remove 'canonical' from status codes
|
24
|
+
|
25
|
+
### v0.7.0 / 2020-10-07
|
26
|
+
|
27
|
+
* DOCS: Add README for Ethon
|
28
|
+
* DOCS: Standardize toplevel docs structure and readme
|
29
|
+
|
3
30
|
### v0.6.0 / 2020-09-10
|
4
31
|
|
5
32
|
* (No significant changes)
|
data/LICENSE
CHANGED
@@ -186,7 +186,7 @@
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
187
187
|
identification within third-party archives.
|
188
188
|
|
189
|
-
Copyright
|
189
|
+
Copyright The OpenTelemetry Authors
|
190
190
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
192
192
|
you may not use this file except in compliance with the License.
|
data/README.md
ADDED
@@ -0,0 +1,54 @@
|
|
1
|
+
# Ethon Instrumentation
|
2
|
+
|
3
|
+
The ethon instrumentation is a community-maintained instrumentation for the [ethon][ethon-home] HTTP library.
|
4
|
+
|
5
|
+
## How do I get started?
|
6
|
+
|
7
|
+
Install the gem using:
|
8
|
+
|
9
|
+
```
|
10
|
+
gem install opentelemetry-instrumentation-ethon
|
11
|
+
```
|
12
|
+
|
13
|
+
Or, if you use [bundler][bundler-home], include `opentelemetry-instrumentation-ethon` to your `Gemfile`.
|
14
|
+
|
15
|
+
## Usage
|
16
|
+
|
17
|
+
To install the instrumentation, call `use` with the name of the instrumentation.
|
18
|
+
|
19
|
+
```ruby
|
20
|
+
OpenTelemetry::SDK.configure do |c|
|
21
|
+
c.use 'OpenTelemetry::Instrumentation::Ethon'
|
22
|
+
end
|
23
|
+
```
|
24
|
+
|
25
|
+
Alternatively, you can also call `use_all` to install all the available instrumentation.
|
26
|
+
|
27
|
+
```ruby
|
28
|
+
OpenTelemetry::SDK.configure do |c|
|
29
|
+
c.use_all
|
30
|
+
end
|
31
|
+
```
|
32
|
+
|
33
|
+
## Examples
|
34
|
+
|
35
|
+
Example usage of faraday can be seen in the `./example/ethon.rb` file [here](https://github.com/open-telemetry/opentelemetry-ruby/blob/master/instrumentation/ethon/example/ethon.rb)
|
36
|
+
|
37
|
+
## How can I get involved?
|
38
|
+
|
39
|
+
The `opentelemetry-instrumentation-ethon` gem source is [on github][repo-github], along with related gems including `opentelemetry-api` and `opentelemetry-sdk`.
|
40
|
+
|
41
|
+
The OpenTelemetry Ruby gems are maintained by the OpenTelemetry-Ruby special interest group (SIG). You can get involved by joining us on our [gitter channel][ruby-gitter] 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].
|
42
|
+
|
43
|
+
## License
|
44
|
+
|
45
|
+
The `opentelemetry-instrumentation-all` gem is distributed under the Apache 2.0 license. See [LICENSE][license-github] for more information.
|
46
|
+
|
47
|
+
[ethon]:https://github.com/typhoeus/ethon
|
48
|
+
[ethon-home]:https://github.com/typhoeus/ethon
|
49
|
+
[bundler-home]: https://bundler.io
|
50
|
+
[repo-github]: https://github.com/open-telemetry/opentelemetry-ruby
|
51
|
+
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/master/LICENSE
|
52
|
+
[ruby-sig]: https://github.com/open-telemetry/community#ruby-sig
|
53
|
+
[community-meetings]: https://github.com/open-telemetry/community#community-meetings
|
54
|
+
[ruby-gitter]: https://gitter.im/open-telemetry/opentelemetry-ruby
|
@@ -1,9 +1,15 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright
|
3
|
+
# Copyright The OpenTelemetry Authors
|
4
4
|
#
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
6
6
|
|
7
|
+
# OpenTelemetry is an open source observability framework, providing a
|
8
|
+
# general-purpose API, SDK, and related tools required for the instrumentation
|
9
|
+
# of cloud-native software, frameworks, and libraries.
|
10
|
+
#
|
11
|
+
# The OpenTelemetry module provides global accessors for telemetry objects.
|
12
|
+
# See the documentation for the `opentelemetry-api` gem for details.
|
7
13
|
module OpenTelemetry
|
8
14
|
# "Instrumentation" are specified by
|
9
15
|
# https://github.com/open-telemetry/opentelemetry-specification/blob/784635d01d8690c8f5fcd1f55bdbc8a13cf2f4f2/specification/glossary.md#instrumentation-library
|
@@ -1,6 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright
|
3
|
+
# Copyright The OpenTelemetry Authors
|
4
4
|
#
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
6
6
|
|
@@ -40,7 +40,7 @@ module OpenTelemetry
|
|
40
40
|
return_code = response_options[:return_code]
|
41
41
|
message = return_code ? ::Ethon::Curl.easy_strerror(return_code) : 'unknown reason'
|
42
42
|
@otel_span.status = OpenTelemetry::Trace::Status.new(
|
43
|
-
OpenTelemetry::Trace::Status::
|
43
|
+
OpenTelemetry::Trace::Status::ERROR,
|
44
44
|
description: "Request has failed: #{message}"
|
45
45
|
)
|
46
46
|
else
|
@@ -78,7 +78,7 @@ module OpenTelemetry
|
|
78
78
|
)
|
79
79
|
|
80
80
|
@otel_original_headers ||= {}
|
81
|
-
|
81
|
+
OpenTelemetry::Trace.with_span(@otel_span) do
|
82
82
|
OpenTelemetry.propagation.http.inject(@otel_original_headers)
|
83
83
|
end
|
84
84
|
self.headers = @otel_original_headers
|
@@ -1,13 +1,13 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
|
-
# Copyright
|
3
|
+
# Copyright The OpenTelemetry Authors
|
4
4
|
#
|
5
5
|
# SPDX-License-Identifier: Apache-2.0
|
6
6
|
|
7
7
|
module OpenTelemetry
|
8
8
|
module Instrumentation
|
9
9
|
module Ethon
|
10
|
-
VERSION = '0.
|
10
|
+
VERSION = '0.11.0'
|
11
11
|
end
|
12
12
|
end
|
13
13
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: opentelemetry-instrumentation-ethon
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.11.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: 2020-
|
11
|
+
date: 2020-12-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: opentelemetry-api
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 0.
|
19
|
+
version: 0.11.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 0.
|
26
|
+
version: 0.11.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: appraisal
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -157,8 +157,10 @@ executables: []
|
|
157
157
|
extensions: []
|
158
158
|
extra_rdoc_files: []
|
159
159
|
files:
|
160
|
+
- ".yardopts"
|
160
161
|
- CHANGELOG.md
|
161
162
|
- LICENSE
|
163
|
+
- README.md
|
162
164
|
- lib/opentelemetry-instrumentation-ethon.rb
|
163
165
|
- lib/opentelemetry/instrumentation.rb
|
164
166
|
- lib/opentelemetry/instrumentation/ethon.rb
|
@@ -169,7 +171,11 @@ files:
|
|
169
171
|
homepage: https://github.com/open-telemetry/opentelemetry-ruby
|
170
172
|
licenses:
|
171
173
|
- Apache-2.0
|
172
|
-
metadata:
|
174
|
+
metadata:
|
175
|
+
changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-ethon/v0.11.0/file.CHANGELOG.html
|
176
|
+
source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/master/instrumentation/ethon
|
177
|
+
bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
|
178
|
+
documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-ethon/v0.11.0
|
173
179
|
post_install_message:
|
174
180
|
rdoc_options: []
|
175
181
|
require_paths:
|
@@ -185,7 +191,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
185
191
|
- !ruby/object:Gem::Version
|
186
192
|
version: '0'
|
187
193
|
requirements: []
|
188
|
-
rubygems_version: 3.1.
|
194
|
+
rubygems_version: 3.1.4
|
189
195
|
signing_key:
|
190
196
|
specification_version: 4
|
191
197
|
summary: Ethon instrumentation for the OpenTelemetry framework
|