stackdriver 0.21.0 → 0.21.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/INSTRUMENTATION_CONFIGURATION.md +0 -18
- data/lib/stackdriver/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: 60570f917d32ac543de94d8771cce7da817974b5ed4aa6aac7e26d22cf419922
|
4
|
+
data.tar.gz: 382ff63dbb045dc9e9ae595846ce24819018b20b5b095df38beef6b68ee4f7c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e4c0b89992639935993a51ff69f8736c934178ccb76c9ce8051322b1d6a53ba0f87d72207df6ce0fc1828f209fb062200dfe53b6e93d0186219ba8386a889a22
|
7
|
+
data.tar.gz: aa625c5ec4afb80feef3def42a9591318c41d154bc958b19caf5cef8140eb11d2a5d7e353958a59470db1764b767b71e7a030c8baca730006f9aa779c46eb6f1
|
data/CHANGELOG.md
CHANGED
@@ -42,13 +42,6 @@ Google::Cloud::ErrorReporting.configure do |config|
|
|
42
42
|
config.service_name = "my-service"
|
43
43
|
end
|
44
44
|
|
45
|
-
# Debugger specific configurations
|
46
|
-
Google::Cloud::Debugger.configure do |config|
|
47
|
-
config.project_id = "debugger-project"
|
48
|
-
config.service_name = "my-service"
|
49
|
-
config.allow_mutating_methods = true
|
50
|
-
end
|
51
|
-
|
52
45
|
# Logging specific configurations
|
53
46
|
Google::Cloud::Logging.configure do |config|
|
54
47
|
config.project_id = "error-reporting-project"
|
@@ -73,7 +66,6 @@ end
|
|
73
66
|
* `project_id`: [`String`] Shared Google Cloud Platform Project identifier. Self discovered on GCP.
|
74
67
|
* `credentials`: [`String`] Path to shared service account JSON keyfile. Self discovered on GCP.
|
75
68
|
* `use_error_reporting`: [`Boolean`] Explicitly enable or disable Error Reporting features. Default: `Rails.env.production?`
|
76
|
-
* `use_debugger`: [`Boolean`] Explicitly enable or disable Debugger features. Default: `Rails.env.production?`
|
77
69
|
* `use_logging`: [`Boolean`] Explicitly enable or disable Logging middleware. Default: `Rails.env.production?`
|
78
70
|
* `use_trace`: [`Boolean`] Explicitly enable or disable Trace features. Default: `Rails.env.production?`
|
79
71
|
|
@@ -85,16 +77,6 @@ end
|
|
85
77
|
* `error_reporting.service_version`: [`String`] Version identifier to running service. Self discovered on GCP.
|
86
78
|
* `error_reporting.ignore_classes`: [`Array`] An Array of Exception classes to ignore. Default: `[]`
|
87
79
|
|
88
|
-
#### Debugger
|
89
|
-
|
90
|
-
* `debugger.project_id`: [`String`] Google Cloud Platform Project identifier just for Debugger. Self discovered on GCP.
|
91
|
-
* `debugger.credentials`: [`String`] Path to service account JSON keyfile. Self discovered on GCP.
|
92
|
-
* `debugger.service_name`: [`String`] Identifier to running service. Self discovered on GCP. Default: `"ruby-app"`
|
93
|
-
* `debugger.service_version`: [`String`] Version identifier to running service. Self discovered on GCP.
|
94
|
-
* `debugger.root`: [`String`] The root directory of the debuggee application in absolute file path form. Default: `Rack::Directory#root` if the application framework is rack-based,i.e. Ruby on Rails, Sinatra. Otherwise use current working directory.
|
95
|
-
* `debugger.allow_mutating_methods`: [`boolean`] Whether to allow expressions to call methods that could mutate program state. Default is `false`.
|
96
|
-
* `debugger.evaluation_time_limit`: [`Numeric`] The time limit in seconds for evaluating expressions. Default is `0.05`.
|
97
|
-
|
98
80
|
#### Logging
|
99
81
|
|
100
82
|
* `logging.project_id`: [`String`] Google Cloud Platform Project identifier just for Logging. Self discovered on GCP.
|
data/lib/stackdriver/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: stackdriver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.21.
|
4
|
+
version: 0.21.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Heng Xiong
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-05-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-cloud-error_reporting
|
@@ -241,7 +241,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
241
241
|
- !ruby/object:Gem::Version
|
242
242
|
version: '0'
|
243
243
|
requirements: []
|
244
|
-
rubygems_version: 3.2.
|
244
|
+
rubygems_version: 3.2.17
|
245
245
|
signing_key:
|
246
246
|
specification_version: 4
|
247
247
|
summary: API Client library for Google Stackdriver
|