stackdriver 0.15.0 → 0.15.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/.yardopts +8 -1
- data/README.md +27 -17
- data/lib/stackdriver.rb +9 -8
- data/lib/stackdriver/version.rb +1 -1
- metadata +16 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 5cfbd8e9c77b8bbf44cdf81627beac4757b9a6b9bd9a9a1e9473f11c970e5bf0
|
|
4
|
+
data.tar.gz: 18f4cd6661281242f2ecee3f09b08c0f0c74c524ab95db38df418e2d37ae672d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8726fdb0d699adcc0fa92dbd3a8b47e7d7ec5e70695bf151b4be752f48dca3e89c286ae33ae64f165566a00c8bc8c84696a58910710ccc4f18b3bb25ab7c02f6
|
|
7
|
+
data.tar.gz: 5a2df83be3070c12adc01791fa74f22ba17b003dd9e0df69260e7c9a5bd2784e62f98af0aba1335058edbed781ba147f8af25fe5699b14627fb2b373577f2252
|
data/.yardopts
CHANGED
|
@@ -1,8 +1,15 @@
|
|
|
1
1
|
--no-private
|
|
2
2
|
--title=Stackdriver
|
|
3
3
|
--markup markdown
|
|
4
|
+
--markup-provider redcarpet
|
|
4
5
|
--exclude ./lib/legacy_stackdriver.rb
|
|
6
|
+
--main OVERVIEW.md
|
|
5
7
|
|
|
6
8
|
./lib/**/*.rb
|
|
7
9
|
-
|
|
8
|
-
|
|
10
|
+
OVERVIEW.md
|
|
11
|
+
INSTRUMENTATION_CONFIGURATION.md
|
|
12
|
+
CONTRIBUTING.md
|
|
13
|
+
CHANGELOG.md
|
|
14
|
+
CODE_OF_CONDUCT.md
|
|
15
|
+
LICENSE
|
data/README.md
CHANGED
|
@@ -74,8 +74,8 @@ Google Kubernetes Engine, or Google Compute Engine), you can use the same
|
|
|
74
74
|
project. Otherwise, if your application is hosted elsewhere, create a new
|
|
75
75
|
project on [Google Cloud](https://console.cloud.google.com/).
|
|
76
76
|
|
|
77
|
-
Make sure the
|
|
78
|
-
|
|
77
|
+
Make sure the [Stackdriver Error Reporting
|
|
78
|
+
API](https://console.cloud.google.com/apis/library/clouderrorreporting.googleapis.com)
|
|
79
79
|
is enabled on your Google Cloud project. (The other service APIs---debugging,
|
|
80
80
|
logging, and tracing---are enabled by default on all new projects.)
|
|
81
81
|
|
|
@@ -106,33 +106,43 @@ send data.
|
|
|
106
106
|
|
|
107
107
|
See the gem documentation for each individual gem for more information.
|
|
108
108
|
|
|
109
|
-
##
|
|
109
|
+
## Supported Ruby Versions
|
|
110
110
|
|
|
111
|
-
This library is supported on Ruby 2.
|
|
111
|
+
This library is supported on Ruby 2.3+.
|
|
112
112
|
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
113
|
+
Google provides official support for Ruby versions that are actively supported
|
|
114
|
+
by Ruby Core—that is, Ruby versions that are either in normal maintenance or in
|
|
115
|
+
security maintenance, and not end of life. Currently, this means Ruby 2.3 and
|
|
116
|
+
later. Older versions of Ruby _may_ still work, but are unsupported and not
|
|
117
|
+
recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details
|
|
118
|
+
about the Ruby support schedule.
|
|
119
119
|
|
|
120
|
-
This library follows [Semantic Versioning](http://semver.org/).
|
|
121
|
-
|
|
120
|
+
This library follows [Semantic Versioning](http://semver.org/). It is currently
|
|
121
|
+
in major version zero (0.y.z), which means that anything may change at any time
|
|
122
|
+
and the public API should not be considered stable.
|
|
122
123
|
|
|
123
124
|
## Contributing
|
|
124
125
|
|
|
125
126
|
Contributions to this library are always welcome and highly encouraged.
|
|
126
127
|
|
|
127
|
-
See the [Contributing
|
|
128
|
+
See the [Contributing
|
|
129
|
+
Guide](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver/latest/file.CONTRIBUTING)
|
|
130
|
+
for more information on how to get started.
|
|
128
131
|
|
|
129
|
-
Please note that this project is released with a Contributor Code of Conduct. By
|
|
132
|
+
Please note that this project is released with a Contributor Code of Conduct. By
|
|
133
|
+
participating in this project you agree to abide by its terms. See [Code of
|
|
134
|
+
Conduct](http://googlecloudplatform.github.io/google-cloud-ruby/docs/stackdriver/latest/file.CODE_OF_CONDUCT)
|
|
135
|
+
for more information.
|
|
130
136
|
|
|
131
137
|
## License
|
|
132
138
|
|
|
133
|
-
This library is licensed under Apache 2.0. Full license text is available in
|
|
139
|
+
This library is licensed under Apache 2.0. Full license text is available in
|
|
140
|
+
[LICENSE](LICENSE).
|
|
134
141
|
|
|
135
142
|
## Support
|
|
136
143
|
|
|
137
|
-
Please [report bugs at the project on
|
|
138
|
-
|
|
144
|
+
Please [report bugs at the project on
|
|
145
|
+
Github](https://github.com/GoogleCloudPlatform/google-cloud-ruby/issues). Don't
|
|
146
|
+
hesitate to [ask
|
|
147
|
+
questions](http://stackoverflow.com/questions/tagged/google-cloud-ruby) about
|
|
148
|
+
the client or APIs on [StackOverflow](http://stackoverflow.com).
|
data/lib/stackdriver.rb
CHANGED
|
@@ -39,18 +39,19 @@ end
|
|
|
39
39
|
# information for your application.
|
|
40
40
|
#
|
|
41
41
|
# Specifically, this gem is a convenience package that loads the following gems:
|
|
42
|
-
#
|
|
43
|
-
# - [google-cloud-
|
|
44
|
-
# - [google-cloud-
|
|
45
|
-
# - [google-cloud-
|
|
42
|
+
#
|
|
43
|
+
# - [google-cloud-debugger](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-debugger)
|
|
44
|
+
# - [google-cloud-error_reporting](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-error_reporting)
|
|
45
|
+
# - [google-cloud-logging](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-logging)
|
|
46
|
+
# - [google-cloud-trace](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-trace)
|
|
46
47
|
#
|
|
47
48
|
# On top of that, stackdriver gem automatically activates the following
|
|
48
49
|
# instrumentation features:
|
|
49
|
-
# - [google-cloud-debugger instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/stackdriver/guides/debugger_instrumentation)
|
|
50
|
-
# - [google-cloud-error_reporting instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/stackdriver/guides/error_reporting_instrumentation)
|
|
51
|
-
# - [google-cloud-logging instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/stackdriver/guides/logging_instrumentation)
|
|
52
|
-
# - [google-cloud-trace instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/#/docs/stackdriver/guides/trace_instrumentation)
|
|
53
50
|
#
|
|
51
|
+
# - [google-cloud-debugger instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-debugger/latest/file.INSTRUMENTATION)
|
|
52
|
+
# - [google-cloud-error_reporting instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-error_reporting/latest/file.INSTRUMENTATION)
|
|
53
|
+
# - [google-cloud-logging instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-logging/latest/file.INSTRUMENTATION)
|
|
54
|
+
# - [google-cloud-trace instrumentation](https://googlecloudplatform.github.io/google-cloud-ruby/docs/google-cloud-trace/latest/file.INSTRUMENTATION)
|
|
54
55
|
#
|
|
55
56
|
# ## Usage
|
|
56
57
|
#
|
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.15.
|
|
4
|
+
version: 0.15.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: 2018-
|
|
11
|
+
date: 2018-09-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: google-cloud-debugger
|
|
@@ -136,6 +136,20 @@ dependencies:
|
|
|
136
136
|
- - "~>"
|
|
137
137
|
- !ruby/object:Gem::Version
|
|
138
138
|
version: '1.1'
|
|
139
|
+
- !ruby/object:Gem::Dependency
|
|
140
|
+
name: redcarpet
|
|
141
|
+
requirement: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - "~>"
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '3.0'
|
|
146
|
+
type: :development
|
|
147
|
+
prerelease: false
|
|
148
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
149
|
+
requirements:
|
|
150
|
+
- - "~>"
|
|
151
|
+
- !ruby/object:Gem::Version
|
|
152
|
+
version: '3.0'
|
|
139
153
|
- !ruby/object:Gem::Dependency
|
|
140
154
|
name: rubocop
|
|
141
155
|
requirement: !ruby/object:Gem::Requirement
|