google-cloud-debugger 0.33.6 → 0.33.7
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/INSTRUMENTATION.md +1 -1
- data/LOGGING.md +1 -1
- data/lib/google/cloud/debugger.rb +1 -1
- data/lib/google/cloud/debugger/middleware.rb +1 -1
- data/lib/google/cloud/debugger/rails.rb +1 -1
- data/lib/google/cloud/debugger/transmitter.rb +2 -2
- data/lib/google/cloud/debugger/v2.rb +2 -2
- data/lib/google/cloud/debugger/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: 38da00f1a12f8f7d55fdfcff126170f3ab8e47fadfcfc809c5375cbf73389ab6
|
|
4
|
+
data.tar.gz: f721a3c9e7c7a15942c597bbe62717f4598120b83a5630d2048449c1d18395bb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d63b203cf35e2cc0f758c00e7076d1f4784605417ba45998636a0ed1fefd7ca54b2baeaa4cbf7829fe1eb85a5935a48d3c57801ce6e358f00074c2f73ecc3cdd
|
|
7
|
+
data.tar.gz: d10c02f85464a0bffda4aafb8115aa403911daeafd59885b5e8f578ba38b1bb975804bfd7196fcedfe2e024848a07d1cf49c2057c53784f63e304fa706c345b4
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Release History
|
|
2
2
|
|
|
3
|
+
### 0.33.7 / 2019-07-31
|
|
4
|
+
|
|
5
|
+
* Fix max threads setting in thread pools
|
|
6
|
+
* Thread pools once again limit the number of threads allocated.
|
|
7
|
+
* Update documentation links
|
|
8
|
+
|
|
3
9
|
### 0.33.6 / 2019-07-08
|
|
4
10
|
|
|
5
11
|
* Support overriding service host and port in the low-level client.
|
data/INSTRUMENTATION.md
CHANGED
|
@@ -58,7 +58,7 @@ you want to run on a non Google Cloud environment or you want to customize
|
|
|
58
58
|
the default behavior.
|
|
59
59
|
|
|
60
60
|
See the
|
|
61
|
-
[Configuration Guide](https://googleapis.
|
|
61
|
+
[Configuration Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
|
|
62
62
|
for full configuration parameters.
|
|
63
63
|
|
|
64
64
|
### Using instrumentation with Ruby on Rails
|
data/LOGGING.md
CHANGED
|
@@ -5,7 +5,7 @@ To enable logging for this library, set the logger for the underlying
|
|
|
5
5
|
that you set may be a Ruby stdlib
|
|
6
6
|
[`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as
|
|
7
7
|
shown below, or a
|
|
8
|
-
[`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
8
|
+
[`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
9
9
|
that will write logs to [Stackdriver
|
|
10
10
|
Logging](https://cloud.google.com/logging/). See
|
|
11
11
|
[grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
@@ -154,7 +154,7 @@ module Google
|
|
|
154
154
|
# single argument.
|
|
155
155
|
#
|
|
156
156
|
# See the [Configuration
|
|
157
|
-
# Guide](https://googleapis.
|
|
157
|
+
# Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
|
|
158
158
|
# for full configuration parameters.
|
|
159
159
|
#
|
|
160
160
|
# @return [Google::Cloud::Config] The configuration object the
|
|
@@ -99,7 +99,7 @@ module Google
|
|
|
99
99
|
# using the other parameters.
|
|
100
100
|
# @param [Hash] kwargs Hash of configuration settings. Used for backward
|
|
101
101
|
# API compatibility. See the [Configuration
|
|
102
|
-
# Guide](https://googleapis.
|
|
102
|
+
# Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
|
|
103
103
|
# for the prefered way to set configuration parameters.
|
|
104
104
|
#
|
|
105
105
|
# @return [Google::Cloud::Debugger::Middleware] A new
|
|
@@ -34,7 +34,7 @@ module Google
|
|
|
34
34
|
#
|
|
35
35
|
# The Railtie should also initialize a debugger to be used by the
|
|
36
36
|
# Middleware. See the [Configuration
|
|
37
|
-
# Guide](https://googleapis.
|
|
37
|
+
# Guide](https://googleapis.dev/ruby/stackdriver/latest/file.INSTRUMENTATION_CONFIGURATION.html)
|
|
38
38
|
# on how to configure the Railtie and Middleware.
|
|
39
39
|
#
|
|
40
40
|
class Railtie < ::Rails::Railtie
|
|
@@ -78,8 +78,8 @@ module Google
|
|
|
78
78
|
@max_queue = max_queue
|
|
79
79
|
@threads = threads
|
|
80
80
|
|
|
81
|
-
@thread_pool = Concurrent::
|
|
82
|
-
|
|
81
|
+
@thread_pool = Concurrent::ThreadPoolExecutor.new \
|
|
82
|
+
max_threads: @threads, max_queue: @max_queue
|
|
83
83
|
|
|
84
84
|
@error_callbacks = []
|
|
85
85
|
|
|
@@ -36,7 +36,7 @@ module Google
|
|
|
36
36
|
# 1. [Select or create a Cloud Platform project.](https://console.cloud.google.com/project)
|
|
37
37
|
# 2. [Enable billing for your project.](https://cloud.google.com/billing/docs/how-to/modify-project#enable_billing_for_a_project)
|
|
38
38
|
# 3. [Enable the Stackdriver Debugger API.](https://console.cloud.google.com/apis/library/clouddebugger.googleapis.com)
|
|
39
|
-
# 4. [Setup Authentication.](https://googleapis.
|
|
39
|
+
# 4. [Setup Authentication.](https://googleapis.dev/ruby/google-cloud-debugger/latest/file.AUTHENTICATION.html)
|
|
40
40
|
#
|
|
41
41
|
# ### Installation
|
|
42
42
|
# ```
|
|
@@ -55,7 +55,7 @@ module Google
|
|
|
55
55
|
#
|
|
56
56
|
# To enable logging for this library, set the logger for the underlying [gRPC](https://github.com/grpc/grpc/tree/master/src/ruby) library.
|
|
57
57
|
# The logger that you set may be a Ruby stdlib [`Logger`](https://ruby-doc.org/stdlib-2.5.0/libdoc/logger/rdoc/Logger.html) as shown below,
|
|
58
|
-
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.
|
|
58
|
+
# or a [`Google::Cloud::Logging::Logger`](https://googleapis.dev/ruby/google-cloud-logging/latest)
|
|
59
59
|
# that will write logs to [Stackdriver Logging](https://cloud.google.com/logging/). See [grpc/logconfig.rb](https://github.com/grpc/grpc/blob/master/src/ruby/lib/grpc/logconfig.rb)
|
|
60
60
|
# and the gRPC [spec_helper.rb](https://github.com/grpc/grpc/blob/master/src/ruby/spec/spec_helper.rb) for additional information.
|
|
61
61
|
#
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: google-cloud-debugger
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.33.
|
|
4
|
+
version: 0.33.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Heng Xiong
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-08-01 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: binding_of_caller
|
|
@@ -364,7 +364,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
364
364
|
- !ruby/object:Gem::Version
|
|
365
365
|
version: '0'
|
|
366
366
|
requirements: []
|
|
367
|
-
rubygems_version: 3.0.
|
|
367
|
+
rubygems_version: 3.0.4
|
|
368
368
|
signing_key:
|
|
369
369
|
specification_version: 4
|
|
370
370
|
summary: API Client and instrumentation library for Stackdriver Debugger
|