-
Notifications
You must be signed in to change notification settings - Fork 567
chore(Pubsub): Add adhoc debug logging #32136
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
cy-yun
wants to merge
10
commits into
googleapis:main
Choose a base branch
from
cy-yun:pubsub-logging
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
b9e21d9
chore(Pubsub): Add adhoc debug logging
cy-yun 965f686
chore(Pubsub): remove Histogram implementation
cy-yun a1336ec
chore(Pubsub): Add GOOGLE_SDK_RUBY_LOGGING enviornmental variable to …
cy-yun dd580cc
chore(PubSub): Make logging safe in service.rb
cy-yun 9f7642a
chore(PubSub): allowing user to configure logger using Google::Cloud.…
cy-yun ac04a73
chore(PubSub): making all logs block-based and catching and killing a…
cy-yun 9b62384
chore(PubSub): add adhoc debug logging info to readme
cy-yun 6b0754c
chore(PubSub): adding docs to fix ci failure
cy-yun 77e2188
chore(PubSub): Implement logging with GoogleSdkLoggerDelegator
yoshi-automation 38f281b
chore(PubSub): owlbot.rb changes upon testing
yoshi-automation File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,25 @@ | ||
| # Copyright 2025 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # http://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
|
|
||
| OwlBot.modifier path: "lib/google/cloud/pubsub/v1/schema_service/client.rb" do |content| | ||
| content.gsub! "::Logger", "::Logger, ::Google::Logging::GoogleSdkLoggerDelegator" | ||
| end | ||
| OwlBot.modifier path: "lib/google/cloud/pubsub/v1/subscription_admin/client.rb" do |content| | ||
| content.gsub! "::Logger", "::Logger, ::Google::Logging::GoogleSdkLoggerDelegator" | ||
| end | ||
| OwlBot.modifier path: "lib/google/cloud/pubsub/v1/topic_admin/client.rb" do |content| | ||
| content.gsub! "::Logger", "::Logger, ::Google::Logging::GoogleSdkLoggerDelegator" | ||
| end | ||
|
|
||
| OwlBot.move_files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| # Copyright 2025 Google LLC | ||
| # | ||
| # Licensed under the Apache License, Version 2.0 (the "License"); | ||
| # you may not use this file except in compliance with the License. | ||
| # You may obtain a copy of the License at | ||
| # | ||
| # https://www.apache.org/licenses/LICENSE-2.0 | ||
| # | ||
| # Unless required by applicable law or agreed to in writing, software | ||
| # distributed under the License is distributed on an "AS IS" BASIS, | ||
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| # See the License for the specific language governing permissions and | ||
| # limitations under the License. | ||
| require "logger" | ||
| require "google/logging/google_sdk_logger_delegator" | ||
| require "google/cloud/config" | ||
|
|
||
| module Google | ||
| module Cloud | ||
| module PubSub | ||
| ## | ||
| # @private | ||
| class Logging | ||
| LOG_NAME = "pubsub".freeze | ||
| VALID_LOG_LEVELS = [:debug, :info, :warn, :error, :fatal].freeze | ||
| private_constant :VALID_LOG_LEVELS, :LOG_NAME | ||
|
|
||
| ## | ||
| # @private | ||
| def self.create logger | ||
| new logger | ||
| end | ||
|
|
||
| ## | ||
| # @private | ||
| # rubocop:disable Naming/BlockForwarding | ||
| def log level, subtag, &message_block | ||
| return unless VALID_LOG_LEVELS.include?(level) && block_given? | ||
| @logging_delegator.public_send(level, "#{LOG_NAME}:#{subtag}", &message_block) | ||
| end | ||
| # rubocop:enable Naming/BlockForwarding | ||
|
|
||
| ## | ||
| # @private | ||
| def log_batch logger_name, reason, type, num_messages, total_bytes | ||
| log :info, logger_name do | ||
| "#{reason} triggered #{type} batch of #{num_messages} messages, a total of #{total_bytes} bytes" | ||
| end | ||
| end | ||
|
|
||
| ## | ||
| # @private | ||
| def log_ack_nack ack_ids, type | ||
| ack_ids.each do |ack_id| | ||
| log :info, "ack-nack" do | ||
| "message (ackID #{ack_id}) #{type}" | ||
| end | ||
| end | ||
| end | ||
|
|
||
| ## | ||
| # @private | ||
| def log_expiry expired | ||
| expired.each do |ack_id, item| | ||
| log :info, "expiry" do | ||
| "message (ID #{item.message_id}, ackID #{ack_id}) has been dropped from leasing due to a timeout" | ||
| end | ||
| end | ||
| end | ||
|
|
||
| private | ||
|
|
||
| def initialize logger | ||
| @logging_delegator = Google::Logging::GoogleSdkLoggerDelegator.new LOG_NAME, logger | ||
| end | ||
| end | ||
| end | ||
| end | ||
| end | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Class name should be a noun