opentelemetry-instrumentation-restclient 0.6.0 → 0.7.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 +4 -0
- data/README.md +49 -0
- data/lib/opentelemetry/instrumentation.rb +6 -0
- data/lib/opentelemetry/instrumentation/restclient/version.rb +1 -1
- metadata +7 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fe8b1598398aa2365aa6699012f530e4e5eb4d95a91686307a59c00bb022ef07
|
|
4
|
+
data.tar.gz: b648206dc4ba1afe62cc9d658146a09445d6716f6b18b913ea2e34e8736b9a99
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c2500eb2e5e9eb0159a5a67c5e3f891d6002055a0ff901c9dbb0fa6062fb4bfbef6a3843228ef647c41307f6bcb9b41593854d9faf779fd81b29fc86b6cb519d
|
|
7
|
+
data.tar.gz: 994290c0fbf9fa6ce931c8049ec5156e5668d24010acc5d3bfc3ae0f482d0d027c7a8831a0bc6d3a87a2bbff9b0b78c2501d62aa762fb111c46b9332883becb6
|
data/.yardopts
ADDED
data/CHANGELOG.md
CHANGED
data/README.md
ADDED
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
# OpenTelemetry RestClient Instrumentation
|
|
2
|
+
|
|
3
|
+
The OpenTelemetry RestClient gem is a community maintained instrumentation for the [RestClient][restclient-home] library.
|
|
4
|
+
|
|
5
|
+
## How do I get started?
|
|
6
|
+
|
|
7
|
+
Install the gem using:
|
|
8
|
+
|
|
9
|
+
```
|
|
10
|
+
gem install opentelemetry-instrumentation-restclient
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
Or, if you use [bundler][bundler-home], include `opentelemetry-instrumentation-restclient` in 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::RestClient'
|
|
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
|
+
## How can I get involved?
|
|
34
|
+
|
|
35
|
+
The `opentelemetry-instrumentation-restclient` gem source is [on github][repo-github], along with related gems including `opentelemetry-api` and `opentelemetry-sdk`.
|
|
36
|
+
|
|
37
|
+
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].
|
|
38
|
+
|
|
39
|
+
## License
|
|
40
|
+
|
|
41
|
+
Apache 2.0 license. See [LICENSE][license-github] for more information.
|
|
42
|
+
|
|
43
|
+
[restclient-home]: https://github.com/rest-client/rest-client
|
|
44
|
+
[bundler-home]: https://bundler.io
|
|
45
|
+
[repo-github]: https://github.com/open-telemetry/opentelemetry-ruby
|
|
46
|
+
[license-github]: https://github.com/open-telemetry/opentelemetry-ruby/blob/master/LICENSE
|
|
47
|
+
[ruby-sig]: https://github.com/open-telemetry/community#ruby-sig
|
|
48
|
+
[community-meetings]: https://github.com/open-telemetry/community#community-meetings
|
|
49
|
+
[ruby-gitter]: https://gitter.im/open-telemetry/opentelemetry-ruby
|
|
@@ -4,6 +4,12 @@
|
|
|
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
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: opentelemetry-instrumentation-restclient
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.7.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-10-08 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.7.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.7.0
|
|
27
27
|
- !ruby/object:Gem::Dependency
|
|
28
28
|
name: appraisal
|
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -171,8 +171,10 @@ executables: []
|
|
|
171
171
|
extensions: []
|
|
172
172
|
extra_rdoc_files: []
|
|
173
173
|
files:
|
|
174
|
+
- ".yardopts"
|
|
174
175
|
- CHANGELOG.md
|
|
175
176
|
- LICENSE
|
|
177
|
+
- README.md
|
|
176
178
|
- lib/opentelemetry-instrumentation-restclient.rb
|
|
177
179
|
- lib/opentelemetry/instrumentation.rb
|
|
178
180
|
- lib/opentelemetry/instrumentation/restclient.rb
|
|
@@ -198,7 +200,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
198
200
|
- !ruby/object:Gem::Version
|
|
199
201
|
version: '0'
|
|
200
202
|
requirements: []
|
|
201
|
-
rubygems_version: 3.1.
|
|
203
|
+
rubygems_version: 3.1.4
|
|
202
204
|
signing_key:
|
|
203
205
|
specification_version: 4
|
|
204
206
|
summary: REST Client instrumentation for the OpenTelemetry framework
|