-
Notifications
You must be signed in to change notification settings - Fork 3.9k
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
gcp-o11y: Remove monitored resource detection for logging #10020
Conversation
… logging; Delegating the resource detection to cloud logging library instead (enabled by default)
@@ -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) { |
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.
This function effectively does very little/nothing - handle null
on line 172 may be. Can you just replace calls with equivalent logic (handle null
)?
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.
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:
- Remove
null
check and keep the function as-is to create an immutable map. - 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.
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.
Okay sounds good- option 1 is ok
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.
LGTM
* 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
* 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
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.