-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
⚠️ Fix broken kind logging #1954
⚠️ Fix broken kind logging #1954
Conversation
If gvk.Kind is "APIService", I expect "apiService", but the current code produces and logs "aPIService". Because it is not easy to do this kind of thing, it is better to log the kind as is.
Hi @tatsuhiro-t. Thanks for your PR. I'm waiting for a kubernetes-sigs member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
pkg/builder/controller.go
Outdated
|
||
ctrlOptions.LogConstructor = func(req *reconcile.Request) logr.Logger { | ||
log := log | ||
if req != nil { | ||
log = log.WithValues( | ||
lowerCamelCaseKind, klog.KRef(req.Namespace, req.Name), | ||
kind, klog.KRef(req.Namespace, req.Name), |
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.
So why not just use gvk.Kind
?
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.
Fixed via bb36890
/ok-to-test |
/label tide/merge-method-squash /lgtm |
ctrlOptions.LogConstructor = func(req *reconcile.Request) logr.Logger { | ||
log := log | ||
if req != nil { | ||
log = log.WithValues( | ||
lowerCamelCaseKind, klog.KRef(req.Namespace, req.Name), | ||
gvk.Kind, klog.KRef(req.Namespace, req.Name), |
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
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:
Always use lowerCamelCase, for example use containerName and not container name or container_name.
I wonder if there is any alternative instead of using kind directly
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
or apiService
(especially the CIDR
and PVC
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:
- Things like
PVC
is just the short name ofPersistentVolumeClaim
, which is different with the real kindAPIService
. - IMHO, changing the first case to lower is a little weird. Kubernetes resources have kind like
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?
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:
When Kubernetes object kind is unknown without runtime checking we should use
object
key. To provide information about kind we should add separateapiVersion
andkind
fields.
so use object
as a key to log name and namespace, and log kind as is under kind
key.
"object"={"name":"foo","namespace":"bar"} "kind"="APIService"
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:
- 1st controller reconciles Clusters: k/v pairs: "Cluster": <custer>
- 2nd controller reconciles Machines: k/v pairs: "Machine": <machine>, "Cluster": <cluster>
- ...
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.
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: alvaroaleman, tatsuhiro-t The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
If gvk.Kind is "APIService", I expect "apiService", but the current
code produces and logs "aPIService". Because it is not easy to do
this kind of thing, it is better to log the kind as is.
Fixes #1945
This is a breaking change. Previously, the log line included a reconciled resource (for example, APIService bar/foo) like:
Now it looks like: