google-cloud-trace 0.41.0 → 0.41.1
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/CONTRIBUTING.md +2 -3
- data/OVERVIEW.md +1 -2
- data/lib/google/cloud/trace/patches/active_call_with_trace.rb +1 -1
- data/lib/google/cloud/trace/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3e542ada29156a89aa795dbf189b03e7f6dffdabb4e11e04bd29259e29026505
|
|
4
|
+
data.tar.gz: 28007dbf96b5019bd7ed1fc8408c0b502d571773ca3a79ea0e706c17fc161c1d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f97fe14f152ff1e1f3aa7238d6ea03248680739d6dd45f0b4735b4728ac15ce22f9bc7af933eead1182b87880c87b7e442f8f6ab3b5211db0f8a47da46c810a3
|
|
7
|
+
data.tar.gz: c9676193bbcdf7bd6d919612b9a3e737336702002e771d02585727b2dd325b4a1200350396b760f4d2ad1cccb9fcfef613a66758e41a1df1d0ec60a070059d11
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
|
@@ -119,15 +119,14 @@ If you alter an example's title, you may encounter breaking tests.
|
|
|
119
119
|
### Trace Acceptance Tests
|
|
120
120
|
|
|
121
121
|
The Trace acceptance tests interact with the live service API. Follow the
|
|
122
|
-
instructions in the {file:AUTHENTICATION.md Authentication
|
|
122
|
+
instructions in the {file:AUTHENTICATION.md Authentication Guide} for enabling
|
|
123
123
|
the Trace API. Occasionally, some API features may not yet be generally
|
|
124
124
|
available, making it difficult for some contributors to successfully run the
|
|
125
125
|
entire acceptance test suite. However, please ensure that you do successfully
|
|
126
126
|
run acceptance tests for any code areas covered by your pull request.
|
|
127
127
|
|
|
128
128
|
To run the acceptance tests, first create and configure a project in the Google
|
|
129
|
-
Developers Console, as described in the {file:AUTHENTICATION.md Authentication
|
|
130
|
-
guide}. Be sure to download the JSON KEY file. Make note of the PROJECT_ID and
|
|
129
|
+
Developers Console, as described in the {file:AUTHENTICATION.md Authentication Guide}. Be sure to download the JSON KEY file. Make note of the PROJECT_ID and
|
|
131
130
|
the KEYFILE location on your system.
|
|
132
131
|
|
|
133
132
|
Before you can run the Trace acceptance tests, you must first create indexes
|
data/OVERVIEW.md
CHANGED
|
@@ -157,5 +157,4 @@ trace_client.patch_traces trace
|
|
|
157
157
|
## Additional information
|
|
158
158
|
|
|
159
159
|
Stackdriver Trace can be configured to be used in Rack applications or to use
|
|
160
|
-
gRPC's logging. To learn more, see the {file:INSTRUMENTATION.md Instrumentation
|
|
161
|
-
Guide} and {file:LOGGING.md Logging guide}.
|
|
160
|
+
gRPC's logging. To learn more, see the {file:INSTRUMENTATION.md Instrumentation Guide} and {file:LOGGING.md Logging guide}.
|
|
@@ -27,7 +27,7 @@ module GRPC
|
|
|
27
27
|
# Override GRPC::ActiveCall#request_response method. Wrap the original
|
|
28
28
|
# method with a trace span that will get submitted with the overall request
|
|
29
29
|
# trace span tree.
|
|
30
|
-
def request_response *args
|
|
30
|
+
def request_response *args, **kwargs
|
|
31
31
|
Google::Cloud::Trace.in_span SPAN_NAME do |span|
|
|
32
32
|
if span && !args.empty?
|
|
33
33
|
grpc_request = args[0]
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-trace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.41.
|
|
4
|
+
version: 0.41.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Daniel Azuma
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-06-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-cloud-core
|
|
@@ -319,7 +319,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
319
319
|
- !ruby/object:Gem::Version
|
|
320
320
|
version: '0'
|
|
321
321
|
requirements: []
|
|
322
|
-
rubygems_version: 3.2.
|
|
322
|
+
rubygems_version: 3.2.17
|
|
323
323
|
signing_key:
|
|
324
324
|
specification_version: 4
|
|
325
325
|
summary: Application Instrumentation and API Client library for Stackdriver Trace
|