-
Notifications
You must be signed in to change notification settings - Fork 1.2k
⚠️ Fix broken kind logging #1954
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
Merged
k8s-ci-robot
merged 2 commits into
kubernetes-sigs:master
from
zlabjp:fix-broken-kind-logging
Jul 15, 2022
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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
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.
This is a breaking change for anyone who filters their logs, please mark it as such. Please also describe how this now looks like rather than only how it does not look like anymore.
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.
Changed the icon to⚠️ to indicate this is a breaking change, and edited the PR description to include how it looks now.
Uh oh!
There was an error while loading. Please reload this page.
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.
I see your point that aPIService is definitely bad. On the other side this change is directly in conflict with the conventions used by k/k: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-instrumentation/migration-to-structured-logging.md#name-arguments
Specifically:
I wonder if there is any alternative instead of using kind directly
Uh oh!
There was an error while loading. Please reload this page.
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.
Looking at the example of good keys I'm not sure if APIService should be logged as
APIService
orapiService
(especially theCIDR
andPVC
examples). Maybe we can ask the logging folks in the#klog
Slack channel.If we assume the first, it could be good enough to just keep the current case when the second character is also uppercase. (I'm aware it's not a great solution, but I assume it's a good heuristic)
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.
My thoughts:
PVC
is just the short name ofPersistentVolumeClaim
, which is different with the real kindAPIService
.PersistentVolumeClaim
and resource(plural) likepersistentvolumeclaims
. But things likepersistentVolumeClaim
are only used as golang variable names for they should have first case lower, why should we keep this format in log?Uh oh!
There was an error while loading. Please reload this page.
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.
My first impression of the linked documentation is it does not take into account the CRD names which can be arbitrarily chosen by third parties and is hard to convert to camelCase in some cases.
Alternatively, we may follow the statement under exception lists:
so use
object
as a key to log name and namespace, and log kind as is underkind
key.Uh oh!
There was an error while loading. Please reload this page.
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.
I have no idea why they picked those conventions, but I agree it's definitely hard to do if we can't just hard-code the key.
Given that, I think i also prefer just using kind directly.
The problem with using object is that it makes it very very hard to correlate log entries via a log query across controllers.
E.g. the following example:
By using kind it's trivial to match logs across controllers. If the reconciled object has the "object" key it requires to calculate the actual kind before correlation between logs of different controllers are possible.
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.
+1 to use kind without transformations, it is simpler, less verbose than object and it read more naturally
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.
Right, so if I understand it correctly, we have a consensus on what we have now in this PR, that is log kind as a key without transformation.