Skip to content
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

gcp-o11y: Remove monitored resource detection for logging #10020

Merged

Conversation

DNVindhya
Copy link
Contributor

@DNVindhya DNVindhya commented Apr 5, 2023

b/277095016

This PR removes the monitored resource detection for logging (which is only available for kubernetes environments).

By not populating monitored resource, we will leverage cloud logging library's auto population of metadata for monitored resource type and values.

… logging; Delegating the resource detection to cloud logging library instead (enabled by default)

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
@DNVindhya DNVindhya marked this pull request as ready for review April 5, 2023 23:58
@DNVindhya DNVindhya changed the title gcp-o11y: Do not populate monitored resource for logging gcp-o11y: Remove monitored resource detection for logging Apr 5, 2023
@@ -178,34 +167,14 @@ Logging createLoggingClient() {
}

@VisibleForTesting
static Map<String, String> getCustomTags(Map<String, String> customTags,
Map<String, String> locationTags, String projectId) {
static Map<String, String> getCustomTags(Map<String, String> customTags) {
Copy link
Contributor

@sanjaypujare sanjaypujare Apr 6, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This function effectively does very little/nothing - handle null on line 172 may be. Can you just replace calls with equivalent logic (handle null)?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The function also creates an immutable map of customTags. On further looking realized null check is not required, as ObservabilityConfigImpl will always return Collections.emptyMap() when custom tags are not set in the configuration.

So I have two options:

  1. Remove null check and keep the function as-is to create an immutable map.
  2. Make the method inline and remove null check i.e
this.customTags = config.getCustomTags();

I prefer Option 1, as it gives us an immutable map. Lmk what you think.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Okay sounds good- option 1 is ok

@DNVindhya DNVindhya added the TODO:backport PR needs to be backported. Removed after backport complete label Apr 6, 2023
Copy link
Contributor

@sanjaypujare sanjaypujare left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@sanjaypujare sanjaypujare merged commit cc6be5f into grpc:master Apr 6, 2023
ejona86 pushed a commit to ejona86/grpc-java that referenced this pull request Apr 6, 2023
* removed populating monitored resource to k8s_conatiner by default for logging; Delegating the resource detection to cloud logging library instead (enabled by default)

* remove kubernetes resource detection logic from observability
ejona86 pushed a commit that referenced this pull request Apr 7, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
* removed populating monitored resource to k8s_conatiner by default for logging; Delegating the resource detection to cloud logging library instead (enabled by default)

* remove kubernetes resource detection logic from observability
@ejona86 ejona86 removed the TODO:backport PR needs to be backported. Removed after backport complete label Apr 11, 2023
@github-actions github-actions bot locked as resolved and limited conversation to collaborators Jul 11, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants