-
Notifications
You must be signed in to change notification settings - Fork 218
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
replace KObjs with KObjSlice #322
Conversation
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 feel like I am missing why this is better - can you explain in the comments and commit message?
internal/serialize/keyvalues.go
Outdated
writeStringValue(b, false, fmt.Sprintf("%+v", v)) | ||
} | ||
}() | ||
writeValue(b, v.MarshalLog()) |
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 could recurse if the result is itself a Marsahller - should this call a simplified version that doesn't do further expansion?
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 was wondering about that myself and came to the conclusion that recursion would be the right thing to do in this case. I don't know why MarshalLog should do this, but if it does, then the returned object is again something that wasn't meant to be logged as-is.
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.
It's not a huge deal, but I would err the other way - MarshalLog should never return something that needs further expansion. I can't see why this would be required but I can see how it would be dangerous.
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'm coming around to that point of view after thinking about what'll happen when MarshalLog (by mistake) returns itself... infinite recursion.
Looks like a good test case for https://github.com/kubernetes/klog/blob/main/test/output.go... will add that.
The overall goal for the PR is to explore overhead of KObjs and whether it is (or can be made) so cheap that we can always call it directly in a Right now, the overhead of KObjs increases with the size of the slice that it gets passed. The new implementation has constant time and is up to 55x faster (see PR description). If this is a significant enough enhancement, then we need to figure out how we can make the enhanced version of KObjs available. If we simply replace it as done in the PR right now, we break the klog API because the function signature of KObjs changes. The performance improvement in this microbenchmark seems significant, but in reality KObjs isn't used that much. If we think that this is worth exploring further, then I could try whether applying it to real traces from Kubernetes Prow jobs also shows a difference. |
So before, After this PR it holds a copy of the passed slice header, pointing to the same data (should be safe in the context of a single log-line). The main difference is that MarshalLog() is only called if the log is actually being emitted, in which case it does the same allocation and copy as before, right? This is exactly what MarshalLog is good for, so not too surprising, but thebenchmark is only half-true. You should compare before with after+MarshalLog() - which should be approx identical, if I understand? Did I get that right? |
Correct.
That depends what you want to benchmark. The benchmark right now simulates the case where a log call does nothing because the verbosity level causes the log entry to be skipped. IMHO that is true for the majority of the log calls in Kubernetes, so it is worth optimizing for this.
That's also my expectation. I was briefly trying to include actual output formatting for text output and JSON, but then the benchmark needs to be in a place where it is okay to pull in zapr (i.e. examples). After considering the risk that comes with breaking the klog API and how unpleasant a klog.KObjs2 would be, I am currently leaning towards documenting that klog.KObjs has overhead even when the result is not used and that therefore it should be used with |
KObjSlice() ?
…On Tue, Apr 26, 2022 at 12:27 PM Patrick Ohly ***@***.***> wrote:
The main difference is that MarshalLog() is only called if the log is
actually being emitted, in which case it does the same allocation and copy
as before, right?
Correct.
This is exactly what MarshalLog is good for, so not too surprising, but
thebenchmark is only half-true. You should compare before with
after+MarshalLog()
That depends what you want to benchmark. The benchmark right now simulates
the case where a log call does nothing because the verbosity level causes
the log entry to be skipped. IMHO that is true for the majority of the log
calls in Kubernetes, so it is worth optimizing for this.
which should be approx identical, if I understand?
That's also my expectation. I was briefly trying to include actual output
formatting for text output and JSON, but then the benchmark needs to be in
a place where it is okay to pull in zapr (i.e. examples).
After considering the risk that comes with breaking the klog API and how
unpleasant a klog.KObjs2 would be, I am currently leaning towards
documenting that klog.KObjs has overhead even when the result is not used
and that therefore it should be used with if loggerV := logger.V(5);
loggerV.Enabled(). Perhaps it's even possible to write a logcheck check
for this.
—
Reply to this email directly, view it on GitHub
<#322 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKWAVDFMDTAGGLGVTFFDTLVHA7RFANCNFSM5ULZKAMA>
.
You are receiving this because you were assigned.Message ID:
***@***.***>
|
And what about KObjs? Mark it as deprecated with KObjSlice as replacement, without ever removing it in klog/v2? |
k8s_references.go
Outdated
arg interface{} | ||
} | ||
|
||
func (k kobjs) MarshalLog() interface{} { |
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.
What I don't like about this implementation is the reliance on support for MarshalLog. A logger which only supports String will not work well.
Would it be better to implement String? But then what should the result of that be? It cannot be the same ["foo/bar", "x/y"]
that klog currently prints because it has to be a string, not a slice of strings.
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.
Implement both and document that MarshalLog is the more performant path. Encourage loggers to support it.
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.
Picking MarshalLog over String does not make sense for all loggers. For example, for klog text format, String is better because the goal is readability.
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 now, klog prints pods=[foo/bar x/y]
because that is what fmt.Sprintf("%v")
produces. I've implemented String
so that it returns the same, so the only difference is that there are additional quotation marks: pods="[foo/bar x/y]"
. This seems reasonable to me.
This means we don't need MarshalLog
support in klog.
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.
Picking MarshalLog over String does not make sense for all loggers. For example, for klog text format, String is better because the goal is readability.
I'm not sure I agree. If I implement MarshalLog()
I am explicitly expressing a preference. I am not going to accidentally imnplement that for one reason and then find this as a side-effect (which DOES happen with String()
)
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.
But that's exactly what we did with ObjectRef? It implements String and MarshalLog, and we want klog text output to use String and zapr to use MarshalLog.
Implementing only MarshalLog is a different case. But as we haven't said that logger implementations must support it, a type that does that will work poorly with those which don't support it - I'd prefer to not have such types.
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.
OK, it's a fair point, but I wonder how much of that is "legacy". If we were doing it all from scratch, would we really want to render ObjectRef differently in text vs. structured?
We're kind of trying to read the user's mind here. MarshalLog is pretty unambiguous, and it seems legit to say (for a specific log impl) "If you set --log-format=text we prefer String()
methods over MarshalLog()
methods. If you set --log-format=struct we prefer MarshalLog()
over String()
".
But if you implement MarshalLog()
which returns a type that also implements MarshalLog()
, you should do the recursion yourself. The log impl gives you one chance.
Likewise, if you implement MarshalLog()
which returns a type that implements String()
, you should call String()
yourself.
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.
If we were doing it all from scratch, would we really want to render ObjectRef differently in text vs. structured?
I think so, yes. Those are two different formats with different usages and at least I prefer the more concise pod=default/my-app
when looking at the text log.
But if you implement MarshalLog() which returns a type that also implements MarshalLog(), you should do the recursion yourself. The log impl gives you one chance.
You already convinced me of that 😄
Likewise, if you implement MarshalLog() which returns a type that implements String(), you should call String() yourself.
Also true.
The main question that I have right now is: does it make sense for a type to implement only MarshalLog and not String? If yes, then we should support MarshalLog in klog as a fallback when String is not available.
I don't think it makes sense (wouldn't work with all loggers) and therefore MarshalLog support is not needed in klog because it would always use String, but this is debatable. Perhaps someone doesn't care about portability?
That's how deprecations work, yeah :) I'm just saying that there are names that are not TERRIBLY worse. |
@serathius : what do you prefer? Add I like |
I wonder whether can and/or should use generics for I was hoping to get rid of the reflect call. But that part wouldn't work because the parameter needs to be stored in the That leaves "clearer API" as the only advantage. Passing a non-slice parameter would be a compile instead of runtime error. I don't think we can require Go 1.18 for usage of klog. We therefore would have to offer two versions of Probably not worth it... |
A struct that stores function pointers for String and MarshalLog and defining those functions inline in the generic |
76d1525
to
fa1e391
Compare
I added some more realistic benchmark under The results where the log call doesn't do any formatting mirrors the micro-benchmark in the PR description: the time is dominated by the time taken by KObjs, so making that constant time is a worthwhile enhancement. The cases where actual output formatting happens show no regression, but those results are not final yet because I haven't implemented String yet.
|
Here are the benchmark results for the current implementation with There is some additional overhead when klog emits the value. But IMHO that is acceptable because skipping a call should be more common and long-term everyone who cares about performance should use zapr, which is as fast as before.
|
This is a first step towards optimizing it. Performance is expected to depend primarily on the length of the slice, so that gets varied.
fa1e391
to
7724404
Compare
Generics would be right, but we are not yet ready to do that in Kubernetes. Worth pointing out that while Alternately, taking |
As long as MarshalLog() would produce a single string, I guess String() is
sufficient. But if you want to print this as a list (when supported) then
MarshalLog() is required.
I can imagine times when you don't want .String() but you do want some
transformation for logging. As long as MarshalLog is not universally
supported, String() is your safety net, but if you know your impl does
support it, you may not need String()
…On Wed, Apr 27, 2022 at 11:26 PM Patrick Ohly ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In k8s_references.go
<#322 (comment)>:
> @@ -76,19 +76,34 @@ func KRef(namespace, name string) ObjectRef {
}
}
-// KObjs returns slice of ObjectRef from an slice of ObjectMeta
-func KObjs(arg interface{}) []ObjectRef {
- s := reflect.ValueOf(arg)
+type kobjs struct {
+ arg interface{}
+}
+
+func (k kobjs) MarshalLog() interface{} {
If we were doing it all from scratch, would we really want to render
ObjectRef differently in text vs. structured?
I think so, yes. Those are two different formats with different usages and
at least I prefer the more concise pod=default/my-app when looking at the
text log.
But if you implement MarshalLog() which returns a type that also
implements MarshalLog(), you should do the recursion yourself. The log impl
gives you one chance.
You already convinced me of that 😄
Likewise, if you implement MarshalLog() which returns a type that
implements String(), you should call String() yourself.
Also true.
The main question that I have right now is: does it make sense for a type
to implement *only* MarshalLog and not String? If yes, then we should
support MarshalLog in klog as a fallback when String is not available.
I don't think it makes sense (wouldn't work with all loggers) and
therefore MarshalLog support is not needed in klog because it would always
use String, but this is debatable. Perhaps someone doesn't care about
portability?
—
Reply to this email directly, view it on GitHub
<#322 (comment)>, or
unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABKWAVDMQRPYXRBGQNQMIUTVHIVSJANCNFSM5ULZKAMA>
.
You are receiving this because you were assigned.Message ID:
***@***.***>
|
Is it the goal that it should be universally supported? In that case we probably should emphasize that in the go-logr documentation.
For me, making such assumptions sounds wrong. No reusable package can make it because it might get reused in binaries with unexpected logger implementations. |
We should "strongly encourage" it.
True. Not every package needs to be reusable, but I guess it comes down to how we tell people to think about logging for a given type. If we say that log impls MAY use String() (but also might not), MAY use MarshalLog() (but also might not), and the preference between those is implementation-defined, what is someone supposed to do? logr is intended to be structured logging, so MarshalLog() seems (to me) to be the better choice. As I said above, I guess it is OK for implementations which are INTENTIONALLY trying to produce text-like output to prefer String(), but I think that's the exception, rather than the rule. I expect that most people who implement MarshalLog() will also implement String(). |
Okay, so let's add it to klogr. We just need to clarify whether this needs to be in this PR.
That's also my conclusion. So coming back to this PR: KObjSlice supports both. Do we agree that this is the right choice also for it? If yes, then klog support for MarshalLog-only types can be added separately. |
Probably yes. |
Then this PR should be ready for a final review round because no further changes are needed. |
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 except corner cases
test/output.go
Outdated
text: "test", | ||
values: []interface{}{"pods", | ||
klog.KObjSlice(nil)}, | ||
expectedOutput: `I output.go:<LINE>] "test" pods="<KObjSlice needs a slice, got type <nil>>" |
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 think we should handle nil
as if it were an empty slice, no?
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.
Agreed and changed.
test/output.go
Outdated
&kmeta{Name: "pod-1", Namespace: "kube-system"}, | ||
nil, | ||
})}, | ||
expectedOutput: `I output.go:<LINE>] "test" pods="<KObjSlice needs a slice of values implementing KMetadata, got type <nil>>" |
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.
likewise, why not log this as <nil>
?
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.
Agreed and changed.
KObjSlice can be used in log calls without causing unnecessary work when the log event does not get logged.
PR update with revised nil handling. For logr.Marshaler support see #325. |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: pohly, serathius 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 |
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [k8s.io/klog](https://github.com/kubernetes/klog) | require | major | `v1.0.0` -> `v2.110.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes/klog (k8s.io/klog)</summary> ### [`v2.110.1`](https://github.com/kubernetes/klog/releases/tag/v2.110.1): Prepare klog release for Kubernetes v1.29 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.100.1...v2.110.1) #### What's Changed - fix: SetLogger via klog.SetLogger will output an unexpected newline by [@​aimuz](https://github.com/aimuz) in [https://github.com/kubernetes/klog/pull/378](https://github.com/kubernetes/klog/pull/378) - resolve comments warning by [@​lowang-bh](https://github.com/lowang-bh) in [https://github.com/kubernetes/klog/pull/379](https://github.com/kubernetes/klog/pull/379) - stderrthreshold: fix flag comment by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/376](https://github.com/kubernetes/klog/pull/376) - enable "go vet" checks for parameters by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/390](https://github.com/kubernetes/klog/pull/390) - promote experimental code to stable by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/392](https://github.com/kubernetes/klog/pull/392) - golangci-lint action by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/380](https://github.com/kubernetes/klog/pull/380) - output: handle WithName like zapr does by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/391](https://github.com/kubernetes/klog/pull/391) - slog support + logr 1.3.0 update by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/384](https://github.com/kubernetes/klog/pull/384) #### New Contributors - [@​aimuz](https://github.com/aimuz) made their first contribution in [https://github.com/kubernetes/klog/pull/378](https://github.com/kubernetes/klog/pull/378) - [@​lowang-bh](https://github.com/lowang-bh) made their first contribution in [https://github.com/kubernetes/klog/pull/379](https://github.com/kubernetes/klog/pull/379) **Full Changelog**: kubernetes/klog@v2.100.1...v2.110.1 ### [`v2.100.1`](https://github.com/kubernetes/klog/releases/tag/v2.100.1): Prepare klog release for Kubernetes v1.28 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.90.1...v2.100.1) #### What's Changed - expose logBridge via NewStandardLog() by [@​mikedanese](https://github.com/mikedanese) in [https://github.com/kubernetes/klog/pull/369](https://github.com/kubernetes/klog/pull/369) - add Format wrapper by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/374](https://github.com/kubernetes/klog/pull/374) - JSON as fallback encoding by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/375](https://github.com/kubernetes/klog/pull/375) #### New Contributors - [@​mikedanese](https://github.com/mikedanese) made their first contribution in [https://github.com/kubernetes/klog/pull/369](https://github.com/kubernetes/klog/pull/369) **Full Changelog**: kubernetes/klog@v2.90.1...v2.100.1 ### [`v2.90.1`](https://github.com/kubernetes/klog/releases/tag/v2.90.1): Prepare klog release for Kubernetes v1.27 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.90.0...v2.90.1) #### What's Changed - buffer: restore dropping of too large buffers by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/366](https://github.com/kubernetes/klog/pull/366) - ktesting improvements by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/365](https://github.com/kubernetes/klog/pull/365) - ktesting + textlogger config api by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/368](https://github.com/kubernetes/klog/pull/368) - textlogger write through by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/363](https://github.com/kubernetes/klog/pull/363) **Full Changelog**: kubernetes/klog@v2.90.0...v2.90.1 ### [`v2.90.0`](https://github.com/kubernetes/klog/releases/tag/v2.90.0): Prepare klog release for Kubernetes v1.27 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.80.1...v2.90.0) #### What's Changed - klog: benchmark the overhead when logging is off by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/355](https://github.com/kubernetes/klog/pull/355) - improve textlogger by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/362](https://github.com/kubernetes/klog/pull/362) **Full Changelog**: kubernetes/klog@v2.80.1...v2.90.0 ##### There are some API differences from previous version k8s.io/klog/v2/klogr contains incompatible changes: - klogger.Enabled: removed - klogger.Error: removed - klogger.Info: removed k8s.io/klog/v2/test contains incompatible changes: - InitKlog: changed from func() to func(testing.TB) *flag.FlagSet ### [`v2.80.1`](https://github.com/kubernetes/klog/releases/tag/v2.80.1): Prepare klog release for Kubernetes v1.26 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.80.0...v2.80.1) #### What's Changed - InitFlags concurrency fix by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/349](https://github.com/kubernetes/klog/pull/349) **Full Changelog**: kubernetes/klog@v2.80.0...v2.80.1 ### [`v2.80.0`](https://github.com/kubernetes/klog/releases/tag/v2.80.0): Prepare klog release for Kubernetes v1.26 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.70.1...v2.80.0) #### What's Changed - OWNERS: add harshanarayana by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/342](https://github.com/kubernetes/klog/pull/342) - kvlistformat: fix the issue with display marshalled value for non string type by [@​harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/344](https://github.com/kubernetes/klog/pull/344) - Bump version of golang to 1.19 and drop older versions by [@​dims](https://github.com/dims) in [https://github.com/kubernetes/klog/pull/345](https://github.com/kubernetes/klog/pull/345) **Full Changelog**: kubernetes/klog@v2.70.1...v2.80.0 ### [`v2.70.1`](https://github.com/kubernetes/klog/releases/tag/v2.70.1): Prepare klog release for Kubernetes v1.25 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.70.0...v2.70.1) #### What's Changed - ktesting: handle test completion by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/337](https://github.com/kubernetes/klog/pull/337) - contextual logging: enable by default again by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/341](https://github.com/kubernetes/klog/pull/341) **Full Changelog**: kubernetes/klog@v2.70.0...v2.70.1 ### [`v2.70.0`](https://github.com/kubernetes/klog/releases/tag/v2.70.0): Prepare klog release for Kubernetes v1.25 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.60.1...v2.70.0) #### What's Changed - logcheck: contextual logging + enhanced checks by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/297](https://github.com/kubernetes/klog/pull/297) - hack/tools: drop dependency on golangci-lint by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/313](https://github.com/kubernetes/klog/pull/313) - StopFlushDaemon: document flushing on shutdown by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/314](https://github.com/kubernetes/klog/pull/314) - logcheck: fix detection of invalid \* regexp in filter by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/315](https://github.com/kubernetes/klog/pull/315) - README.md: clarify -logtostderr by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/319](https://github.com/kubernetes/klog/pull/319) - Trim duplicates by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/324](https://github.com/kubernetes/klog/pull/324) - replace KObjs with KObjSlice by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/322](https://github.com/kubernetes/klog/pull/322) - support logr.Marshaler by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/325](https://github.com/kubernetes/klog/pull/325) - internal: remove unused TrimDuplicates by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/326](https://github.com/kubernetes/klog/pull/326) - save and restore state by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/320](https://github.com/kubernetes/klog/pull/320) - GitHub: use apidiff with more recent Go by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/329](https://github.com/kubernetes/klog/pull/329) - remove hack/tools by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/330](https://github.com/kubernetes/klog/pull/330) - GIT-331: fix shadowing key from the kv pair by [@​harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/332](https://github.com/kubernetes/klog/pull/332) - klog.Fatal backtrace revert by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/328](https://github.com/kubernetes/klog/pull/328) - ktesting: capture log data in memory by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/327](https://github.com/kubernetes/klog/pull/327) - GIT-275: add tests for int and struct keys by [@​harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/333](https://github.com/kubernetes/klog/pull/333) #### New Contributors - [@​harshanarayana](https://github.com/harshanarayana) made their first contribution in [https://github.com/kubernetes/klog/pull/332](https://github.com/kubernetes/klog/pull/332) **Full Changelog**: kubernetes/klog@v2.60.1...v2.70.0 ### [`v2.60.1`](https://github.com/kubernetes/klog/releases/tag/v2.60.1): Prepare klog release for Kubernetes v1.24 (Take 6) [Compare Source](https://github.com/kubernetes/klog/compare/v2.60.0...v2.60.1) #### What's Changed - Cleanup OWNERS file by [@​serathius](https://github.com/serathius) in [https://github.com/kubernetes/klog/pull/309](https://github.com/kubernetes/klog/pull/309) - dependencies: avoid k8s.io/utils, fork clock code instead by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/310](https://github.com/kubernetes/klog/pull/310) - promote contextual logging APIs to stable by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/311](https://github.com/kubernetes/klog/pull/311) **Full Changelog**: kubernetes/klog@v2.60.0...v2.60.1 ### [`v2.60.0`](https://github.com/kubernetes/klog/releases/tag/v2.60.0): Prepare klog release for Kubernetes v1.24 (Take 5) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.2...v2.60.0) #### What's Changed - SetContextualLogger: remove unintentionally merged API call by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/308](https://github.com/kubernetes/klog/pull/308) **Full Changelog**: kubernetes/klog@v2.50.2...v2.60.0 ### [`v2.50.2`](https://github.com/kubernetes/klog/compare/v2.50.1...v2.50.2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.1...v2.50.2) ### [`v2.50.1`](https://github.com/kubernetes/klog/releases/tag/v2.50.1): Prepare klog release for Kubernetes v1.24 (Take 4) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.0...v2.50.1) #### What's Changed - SetLoggerWithOptions: support flushing by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/306](https://github.com/kubernetes/klog/pull/306) **Full Changelog**: kubernetes/klog@v2.50.0...v2.50.1 ### [`v2.50.0`](https://github.com/kubernetes/klog/releases/tag/v2.50.0): Prepare klog release for Kubernetes v1.24 (Take 3) [Compare Source](https://github.com/kubernetes/klog/compare/v2.40.1...v2.50.0) #### What's Changed - Panic on empty info with custom logr by [@​jklaw90](https://github.com/jklaw90) in [https://github.com/kubernetes/klog/pull/283](https://github.com/kubernetes/klog/pull/283) - Add missing Depth logging functions. by [@​s3rj1k](https://github.com/s3rj1k) in [https://github.com/kubernetes/klog/pull/280](https://github.com/kubernetes/klog/pull/280) - fix typo in klog.go by [@​cocaccola](https://github.com/cocaccola) in [https://github.com/kubernetes/klog/pull/270](https://github.com/kubernetes/klog/pull/270) - Update README.md by [@​noaabarki](https://github.com/noaabarki) in [https://github.com/kubernetes/klog/pull/281](https://github.com/kubernetes/klog/pull/281) - log filter: ignored by V, used during log call by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/290](https://github.com/kubernetes/klog/pull/290) - SetLogger/ClearLogger/SetLogFilter cleanup by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/289](https://github.com/kubernetes/klog/pull/289) - fixes for PR [#​280](https://github.com/kubernetes/klog/issues/280), refactoring, textlogger, unit test by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/287](https://github.com/kubernetes/klog/pull/287) - klogr verbosity by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/295](https://github.com/kubernetes/klog/pull/295) - test: fix Go version matrix by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/298](https://github.com/kubernetes/klog/pull/298) - handle panics in MarshalLog, Error, String by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/299](https://github.com/kubernetes/klog/pull/299) - Fix goroutine leak: make flushDaemon stoppable by [@​katexochen](https://github.com/katexochen) in [https://github.com/kubernetes/klog/pull/293](https://github.com/kubernetes/klog/pull/293) - structured logging: replacing Fatal/Exit/etc. without loss of flushing by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/303](https://github.com/kubernetes/klog/pull/303) - contextual logging by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/296](https://github.com/kubernetes/klog/pull/296) - remove side effects of tests by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/305](https://github.com/kubernetes/klog/pull/305) - tests: stop testing with Go 1.14 by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/304](https://github.com/kubernetes/klog/pull/304) #### New Contributors - [@​jklaw90](https://github.com/jklaw90) made their first contribution in [https://github.com/kubernetes/klog/pull/283](https://github.com/kubernetes/klog/pull/283) - [@​s3rj1k](https://github.com/s3rj1k) made their first contribution in [https://github.com/kubernetes/klog/pull/280](https://github.com/kubernetes/klog/pull/280) - [@​cocaccola](https://github.com/cocaccola) made their first contribution in [https://github.com/kubernetes/klog/pull/270](https://github.com/kubernetes/klog/pull/270) - [@​noaabarki](https://github.com/noaabarki) made their first contribution in [https://github.com/kubernetes/klog/pull/281](https://github.com/kubernetes/klog/pull/281) - [@​katexochen](https://github.com/katexochen) made their first contribution in [https://github.com/kubernetes/klog/pull/293](https://github.com/kubernetes/klog/pull/293) **Full Changelog**: kubernetes/klog@v2.40.1...v2.50.0 ### [`v2.40.1`](https://github.com/kubernetes/klog/releases/tag/v2.40.1): Prepare klog release for Kubernetes v1.24 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.40.0...v2.40.1) #### What's Changed - Using OS targeted go files to separate out the username logic. by [@​phillipsj](https://github.com/phillipsj) in [https://github.com/kubernetes/klog/pull/271](https://github.com/kubernetes/klog/pull/271) - Recover from nil pointers when logging by [@​dims](https://github.com/dims) in [https://github.com/kubernetes/klog/pull/279](https://github.com/kubernetes/klog/pull/279) #### New Contributors - [@​phillipsj](https://github.com/phillipsj) made their first contribution in [https://github.com/kubernetes/klog/pull/271](https://github.com/kubernetes/klog/pull/271) **Full Changelog**: kubernetes/klog@v2.40.0...v2.40.1 ### [`v2.40.0`](https://github.com/kubernetes/klog/releases/tag/v2.40.0): Prepare klog release for Kubernetes v1.24 [Compare Source](https://github.com/kubernetes/klog/compare/v2.30.0...v2.40.0) #### What's Changed - structured logging: support values with line breaks by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/273](https://github.com/kubernetes/klog/pull/273) - Fix klog lock release on panic error by [@​astraw99](https://github.com/astraw99) in [https://github.com/kubernetes/klog/pull/272](https://github.com/kubernetes/klog/pull/272) - add format test for KObjs by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/276](https://github.com/kubernetes/klog/pull/276) - add Verbose.InfoSDepth by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/277](https://github.com/kubernetes/klog/pull/277) #### Known Issues - [https://github.com/kubernetes/klog/issues/278](https://github.com/kubernetes/klog/issues/278) #### New Contributors - [@​astraw99](https://github.com/astraw99) made their first contribution in [https://github.com/kubernetes/klog/pull/272](https://github.com/kubernetes/klog/pull/272) **Full Changelog**: kubernetes/klog@v2.30.0...v2.40.0 ### [`v2.30.0`](https://github.com/kubernetes/klog/releases/tag/v2.30.0): Prepare klog release for Kubernetes v1.23 (take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.20.0...v2.30.0) #### What's Changed - Fix logcheck exit function by [@​luyou86](https://github.com/luyou86) in [https://github.com/kubernetes/klog/pull/265](https://github.com/kubernetes/klog/pull/265) - custom marshaler for ObjectRef by [@​pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/266](https://github.com/kubernetes/klog/pull/266) #### New Contributors - [@​luyou86](https://github.com/luyou86) made their first contribution in [https://github.com/kubernetes/klog/pull/265](https://github.com/kubernetes/klog/pull/265) **Full Changelog**: kubernetes/klog@v2.20.0...v2.30.0 ### [`v2.20.0`](https://github.com/kubernetes/klog/releases/tag/v2.20.0): Prepare klog release for Kubernetes v1.23 [Compare Source](https://github.com/kubernetes/klog/compare/v2.10.0...v2.20.0) Changes are here : kubernetes/klog@v2.10.0...v2.20.0 since we moved to logr v1.0.0, there are incompatible changes: - klogger.Enabled: changed from func() bool to func(int) bool - klogger.Info: changed from func(string, ...interface{}) to func(int, string, ...interface{}) - klogger.V: removed - klogger.WithCallDepth: changed from func(int) github.com/go-logr/logr.Logger to func(int) github.com/go-logr/logr.LogSink - klogger.WithName: changed from func(string) github.com/go-logr/logr.Logger to func(string) github.com/go-logr/logr.LogSink - klogger.WithValues: changed from func(...interface{}) github.com/go-logr/logr.Logger to func(...interface{}) github.com/go-logr/logr.LogSink [`83653a6`](https://github.com/kubernetes/klog/commit/83653a6deebf) Update to newest versions of golang 1.17.x [`d648c2e`](https://github.com/kubernetes/klog/commit/d648c2e42d30) fix file-based filtering symbolization [`8ee3d65`](https://github.com/kubernetes/klog/commit/8ee3d652c96b) export ClearLogger [`4171f3c`](https://github.com/kubernetes/klog/commit/4171f3c1be1b) Switching to logr tag v1.0.0 [`9ab3c2b`](https://github.com/kubernetes/klog/commit/9ab3c2b56cb2) add serathius as approvers of klog ### [`v2.10.0`](https://github.com/kubernetes/klog/releases/tag/v2.10.0): One more change to support 1.22 release [Compare Source](https://github.com/kubernetes/klog/compare/v2.9.0...v2.10.0) Changes are here : kubernetes/klog@v2.9.0...v2.10.0 new function added: func KObjs(arg interface{}) []ObjectRef ### [`v2.9.0`](https://github.com/kubernetes/klog/releases/tag/v2.9.0): Prepare release for Kubernetes v1.22 [Compare Source](https://github.com/kubernetes/klog/compare/v2.8.0...v2.9.0) Changes are here : kubernetes/klog@v2.8.0...v2.9.0 [`6a9ef3f`](https://github.com/kubernetes/klog/commit/6a9ef3fa9a15) fix typo [`59f7cb5`](https://github.com/kubernetes/klog/commit/59f7cb505f58) fix byte array display in InfoS and ErrorS [`cf22f1e`](https://github.com/kubernetes/klog/commit/cf22f1e79721) Call logr with call depth [`e95c7e3`](https://github.com/kubernetes/klog/commit/e95c7e303755) make SetLogger thread-safe [`2728fe1`](https://github.com/kubernetes/klog/commit/2728fe192acc) check usage of format specifier in structured log func [`a18bc97`](https://github.com/kubernetes/klog/commit/a18bc976a212) Fix by pr suggestions [`4e4135c`](https://github.com/kubernetes/klog/commit/4e4135c3dd8a) Add check for InfoS & ErrorS parameters ### [`v2.8.0`](https://github.com/kubernetes/klog/releases/tag/v2.8.0): Bug fixes for structured logging for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.7.0...v2.8.0) ### [`v2.7.0`](https://github.com/kubernetes/klog/releases/tag/v2.7.0): Miscellaneous fixes for structured logging for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.6.0...v2.7.0) Changes are here : kubernetes/klog@v2.6.0...v2.7.0 ### [`v2.6.0`](https://github.com/kubernetes/klog/releases/tag/v2.6.0): Adding a linter for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.5.0...v2.6.0) Changes are here : kubernetes/klog@v2.5.0...v2.6.0 please see https://github.com/kubernetes/klog/tree/master/hack/tools/logcheck ### [`v2.5.0`](https://github.com/kubernetes/klog/releases/tag/v2.5.0): Prepare release for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.4.0...v2.5.0) Changes are here : kubernetes/klog@v2.4.0...v2.5.0 klog.go has new API: +func ErrorSDepth(depth int, err error, msg string, keysAndValues ...interface{}) { +func InfoSDepth(depth int, msg string, keysAndValues ...interface{}) { klogr/klogr.go has new API: func (l klogger) WithCallDepth(depth int) logr.Logger { func NewWithOptions(options ...Option) logr.Logger { func WithFormat(format Format) Option { ### [`v2.4.0`](https://github.com/kubernetes/klog/releases/tag/v2.4.0): Prepare release for Kubernetes v1.20 [Compare Source](https://github.com/kubernetes/klog/compare/v2.3.0...v2.4.0) Changes are here : kubernetes/klog@v2.3.0...v2.4.0 ### [`v2.3.0`](https://github.com/kubernetes/klog/releases/tag/v2.3.0): Fix Typo-ed Method Error -> ErrorS [Compare Source](https://github.com/kubernetes/klog/compare/v2.2.0...v2.3.0) Changes are here : kubernetes/klog@v2.2.0...v2.3.0 ### [`v2.2.0`](https://github.com/kubernetes/klog/releases/tag/v2.2.0): Dependency update and bugfix for InfoS [Compare Source](https://github.com/kubernetes/klog/compare/2.1.0...v2.2.0) - [`2e691eb`](https://github.com/kubernetes/klog/commit/2e691eb3eeb3) Fix missing fields in verbose InfoS - [`966c986`](https://github.com/kubernetes/klog/commit/966c98681ca0) feat use go-logr v0.2.0 Changes are here : kubernetes/klog@v2.1.0...v2.2.0 ### [`v2.1.0`](https://github.com/kubernetes/klog/releases/tag/v2.1.0): Better support for Structured Logging [Compare Source](https://github.com/kubernetes/klog/compare/v2.0.0...2.1.0) We are now enforcing API compatibility, added Windows based tests, and have tweaked the structured logging methods after some real world experience updating kubernetes main repo. - [`bbd9ca1`](https://github.com/kubernetes/klog/commit/bbd9ca1) Add tests for error in InfoS - [`1ccc0e1`](https://github.com/kubernetes/klog/commit/1ccc0e1) fix imported bug time encode format form kvlistFormat - [`dd4d1a6`](https://github.com/kubernetes/klog/commit/dd4d1a6) fix typo in README.md - [`49123d4`](https://github.com/kubernetes/klog/commit/49123d4) ErrorS(nil, ...) should call loggr.Error(nil, ...) - [`5b199cd`](https://github.com/kubernetes/klog/commit/5b199cd) Fix documentation for V(level) - [`d1eb30f`](https://github.com/kubernetes/klog/commit/d1eb30f) Add apidiff script to check go signature changes - [`dc505bf`](https://github.com/kubernetes/klog/commit/dc505bf) Switch slack channel to #klog - [`a47ebb9`](https://github.com/kubernetes/klog/commit/a47ebb9) Add example for co-existence of klog v1 and v2 - [`134f148`](https://github.com/kubernetes/klog/commit/134f148) logName(): lazily lookup userName instead of on init() - [`db06a1b`](https://github.com/kubernetes/klog/commit/db06a1b) fix serialization of special html chars - [`5727d2a`](https://github.com/kubernetes/klog/commit/5727d2a) Fix Windows integration tests - [`edbc1d3`](https://github.com/kubernetes/klog/commit/edbc1d3) test(\*): TestRollover failed randomly on Windows - [`6f99060`](https://github.com/kubernetes/klog/commit/6f99060) Add LogToStderr, a programatic way to log exclusively to stderr or not ### [`v2.0.0`](https://github.com/kubernetes/klog/releases/tag/v2.0.0): Release to support Kubernetes v1.19 [Compare Source](https://github.com/kubernetes/klog/compare/v1.0.0...v2.0.0) Beware of type change: `Verbose` New Methods: - `SetLogger` (override logger to set a custom implementation) - `InfoS` (structured logging) - `ErrorS` (structured logging) Changes are here : kubernetes/klog@v2.0.0-rc.1...v2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com> Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [k8s.io/klog](https://github.com/kubernetes/klog) | require | major | `v1.0.0` -> `v2.110.1` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### Release Notes <details> <summary>kubernetes/klog (k8s.io/klog)</summary> ### [`v2.110.1`](https://github.com/kubernetes/klog/releases/tag/v2.110.1): Prepare klog release for Kubernetes v1.29 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.100.1...v2.110.1) #### What's Changed - fix: SetLogger via klog.SetLogger will output an unexpected newline by [@&open-telemetry#8203;aimuz](https://github.com/aimuz) in [https://github.com/kubernetes/klog/pull/378](https://github.com/kubernetes/klog/pull/378) - resolve comments warning by [@&open-telemetry#8203;lowang-bh](https://github.com/lowang-bh) in [https://github.com/kubernetes/klog/pull/379](https://github.com/kubernetes/klog/pull/379) - stderrthreshold: fix flag comment by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/376](https://github.com/kubernetes/klog/pull/376) - enable "go vet" checks for parameters by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/390](https://github.com/kubernetes/klog/pull/390) - promote experimental code to stable by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/392](https://github.com/kubernetes/klog/pull/392) - golangci-lint action by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/380](https://github.com/kubernetes/klog/pull/380) - output: handle WithName like zapr does by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/391](https://github.com/kubernetes/klog/pull/391) - slog support + logr 1.3.0 update by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/384](https://github.com/kubernetes/klog/pull/384) #### New Contributors - [@&open-telemetry#8203;aimuz](https://github.com/aimuz) made their first contribution in [https://github.com/kubernetes/klog/pull/378](https://github.com/kubernetes/klog/pull/378) - [@&open-telemetry#8203;lowang-bh](https://github.com/lowang-bh) made their first contribution in [https://github.com/kubernetes/klog/pull/379](https://github.com/kubernetes/klog/pull/379) **Full Changelog**: kubernetes/klog@v2.100.1...v2.110.1 ### [`v2.100.1`](https://github.com/kubernetes/klog/releases/tag/v2.100.1): Prepare klog release for Kubernetes v1.28 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.90.1...v2.100.1) #### What's Changed - expose logBridge via NewStandardLog() by [@&open-telemetry#8203;mikedanese](https://github.com/mikedanese) in [https://github.com/kubernetes/klog/pull/369](https://github.com/kubernetes/klog/pull/369) - add Format wrapper by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/374](https://github.com/kubernetes/klog/pull/374) - JSON as fallback encoding by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/375](https://github.com/kubernetes/klog/pull/375) #### New Contributors - [@&open-telemetry#8203;mikedanese](https://github.com/mikedanese) made their first contribution in [https://github.com/kubernetes/klog/pull/369](https://github.com/kubernetes/klog/pull/369) **Full Changelog**: kubernetes/klog@v2.90.1...v2.100.1 ### [`v2.90.1`](https://github.com/kubernetes/klog/releases/tag/v2.90.1): Prepare klog release for Kubernetes v1.27 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.90.0...v2.90.1) #### What's Changed - buffer: restore dropping of too large buffers by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/366](https://github.com/kubernetes/klog/pull/366) - ktesting improvements by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/365](https://github.com/kubernetes/klog/pull/365) - ktesting + textlogger config api by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/368](https://github.com/kubernetes/klog/pull/368) - textlogger write through by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/363](https://github.com/kubernetes/klog/pull/363) **Full Changelog**: kubernetes/klog@v2.90.0...v2.90.1 ### [`v2.90.0`](https://github.com/kubernetes/klog/releases/tag/v2.90.0): Prepare klog release for Kubernetes v1.27 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.80.1...v2.90.0) #### What's Changed - klog: benchmark the overhead when logging is off by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/355](https://github.com/kubernetes/klog/pull/355) - improve textlogger by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/362](https://github.com/kubernetes/klog/pull/362) **Full Changelog**: kubernetes/klog@v2.80.1...v2.90.0 ##### There are some API differences from previous version k8s.io/klog/v2/klogr contains incompatible changes: - klogger.Enabled: removed - klogger.Error: removed - klogger.Info: removed k8s.io/klog/v2/test contains incompatible changes: - InitKlog: changed from func() to func(testing.TB) *flag.FlagSet ### [`v2.80.1`](https://github.com/kubernetes/klog/releases/tag/v2.80.1): Prepare klog release for Kubernetes v1.26 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.80.0...v2.80.1) #### What's Changed - InitFlags concurrency fix by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/349](https://github.com/kubernetes/klog/pull/349) **Full Changelog**: kubernetes/klog@v2.80.0...v2.80.1 ### [`v2.80.0`](https://github.com/kubernetes/klog/releases/tag/v2.80.0): Prepare klog release for Kubernetes v1.26 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.70.1...v2.80.0) #### What's Changed - OWNERS: add harshanarayana by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/342](https://github.com/kubernetes/klog/pull/342) - kvlistformat: fix the issue with display marshalled value for non string type by [@&open-telemetry#8203;harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/344](https://github.com/kubernetes/klog/pull/344) - Bump version of golang to 1.19 and drop older versions by [@&open-telemetry#8203;dims](https://github.com/dims) in [https://github.com/kubernetes/klog/pull/345](https://github.com/kubernetes/klog/pull/345) **Full Changelog**: kubernetes/klog@v2.70.1...v2.80.0 ### [`v2.70.1`](https://github.com/kubernetes/klog/releases/tag/v2.70.1): Prepare klog release for Kubernetes v1.25 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.70.0...v2.70.1) #### What's Changed - ktesting: handle test completion by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/337](https://github.com/kubernetes/klog/pull/337) - contextual logging: enable by default again by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/341](https://github.com/kubernetes/klog/pull/341) **Full Changelog**: kubernetes/klog@v2.70.0...v2.70.1 ### [`v2.70.0`](https://github.com/kubernetes/klog/releases/tag/v2.70.0): Prepare klog release for Kubernetes v1.25 (Take 1) [Compare Source](https://github.com/kubernetes/klog/compare/v2.60.1...v2.70.0) #### What's Changed - logcheck: contextual logging + enhanced checks by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/297](https://github.com/kubernetes/klog/pull/297) - hack/tools: drop dependency on golangci-lint by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/313](https://github.com/kubernetes/klog/pull/313) - StopFlushDaemon: document flushing on shutdown by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/314](https://github.com/kubernetes/klog/pull/314) - logcheck: fix detection of invalid \* regexp in filter by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/315](https://github.com/kubernetes/klog/pull/315) - README.md: clarify -logtostderr by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/319](https://github.com/kubernetes/klog/pull/319) - Trim duplicates by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/324](https://github.com/kubernetes/klog/pull/324) - replace KObjs with KObjSlice by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/322](https://github.com/kubernetes/klog/pull/322) - support logr.Marshaler by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/325](https://github.com/kubernetes/klog/pull/325) - internal: remove unused TrimDuplicates by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/326](https://github.com/kubernetes/klog/pull/326) - save and restore state by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/320](https://github.com/kubernetes/klog/pull/320) - GitHub: use apidiff with more recent Go by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/329](https://github.com/kubernetes/klog/pull/329) - remove hack/tools by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/330](https://github.com/kubernetes/klog/pull/330) - GIT-331: fix shadowing key from the kv pair by [@&open-telemetry#8203;harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/332](https://github.com/kubernetes/klog/pull/332) - klog.Fatal backtrace revert by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/328](https://github.com/kubernetes/klog/pull/328) - ktesting: capture log data in memory by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/327](https://github.com/kubernetes/klog/pull/327) - GIT-275: add tests for int and struct keys by [@&open-telemetry#8203;harshanarayana](https://github.com/harshanarayana) in [https://github.com/kubernetes/klog/pull/333](https://github.com/kubernetes/klog/pull/333) #### New Contributors - [@&open-telemetry#8203;harshanarayana](https://github.com/harshanarayana) made their first contribution in [https://github.com/kubernetes/klog/pull/332](https://github.com/kubernetes/klog/pull/332) **Full Changelog**: kubernetes/klog@v2.60.1...v2.70.0 ### [`v2.60.1`](https://github.com/kubernetes/klog/releases/tag/v2.60.1): Prepare klog release for Kubernetes v1.24 (Take 6) [Compare Source](https://github.com/kubernetes/klog/compare/v2.60.0...v2.60.1) #### What's Changed - Cleanup OWNERS file by [@&open-telemetry#8203;serathius](https://github.com/serathius) in [https://github.com/kubernetes/klog/pull/309](https://github.com/kubernetes/klog/pull/309) - dependencies: avoid k8s.io/utils, fork clock code instead by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/310](https://github.com/kubernetes/klog/pull/310) - promote contextual logging APIs to stable by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/311](https://github.com/kubernetes/klog/pull/311) **Full Changelog**: kubernetes/klog@v2.60.0...v2.60.1 ### [`v2.60.0`](https://github.com/kubernetes/klog/releases/tag/v2.60.0): Prepare klog release for Kubernetes v1.24 (Take 5) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.2...v2.60.0) #### What's Changed - SetContextualLogger: remove unintentionally merged API call by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/308](https://github.com/kubernetes/klog/pull/308) **Full Changelog**: kubernetes/klog@v2.50.2...v2.60.0 ### [`v2.50.2`](https://github.com/kubernetes/klog/compare/v2.50.1...v2.50.2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.1...v2.50.2) ### [`v2.50.1`](https://github.com/kubernetes/klog/releases/tag/v2.50.1): Prepare klog release for Kubernetes v1.24 (Take 4) [Compare Source](https://github.com/kubernetes/klog/compare/v2.50.0...v2.50.1) #### What's Changed - SetLoggerWithOptions: support flushing by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/306](https://github.com/kubernetes/klog/pull/306) **Full Changelog**: kubernetes/klog@v2.50.0...v2.50.1 ### [`v2.50.0`](https://github.com/kubernetes/klog/releases/tag/v2.50.0): Prepare klog release for Kubernetes v1.24 (Take 3) [Compare Source](https://github.com/kubernetes/klog/compare/v2.40.1...v2.50.0) #### What's Changed - Panic on empty info with custom logr by [@&open-telemetry#8203;jklaw90](https://github.com/jklaw90) in [https://github.com/kubernetes/klog/pull/283](https://github.com/kubernetes/klog/pull/283) - Add missing Depth logging functions. by [@&open-telemetry#8203;s3rj1k](https://github.com/s3rj1k) in [https://github.com/kubernetes/klog/pull/280](https://github.com/kubernetes/klog/pull/280) - fix typo in klog.go by [@&open-telemetry#8203;cocaccola](https://github.com/cocaccola) in [https://github.com/kubernetes/klog/pull/270](https://github.com/kubernetes/klog/pull/270) - Update README.md by [@&open-telemetry#8203;noaabarki](https://github.com/noaabarki) in [https://github.com/kubernetes/klog/pull/281](https://github.com/kubernetes/klog/pull/281) - log filter: ignored by V, used during log call by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/290](https://github.com/kubernetes/klog/pull/290) - SetLogger/ClearLogger/SetLogFilter cleanup by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/289](https://github.com/kubernetes/klog/pull/289) - fixes for PR [#&open-telemetry#8203;280](https://github.com/kubernetes/klog/issues/280), refactoring, textlogger, unit test by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/287](https://github.com/kubernetes/klog/pull/287) - klogr verbosity by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/295](https://github.com/kubernetes/klog/pull/295) - test: fix Go version matrix by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/298](https://github.com/kubernetes/klog/pull/298) - handle panics in MarshalLog, Error, String by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/299](https://github.com/kubernetes/klog/pull/299) - Fix goroutine leak: make flushDaemon stoppable by [@&open-telemetry#8203;katexochen](https://github.com/katexochen) in [https://github.com/kubernetes/klog/pull/293](https://github.com/kubernetes/klog/pull/293) - structured logging: replacing Fatal/Exit/etc. without loss of flushing by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/303](https://github.com/kubernetes/klog/pull/303) - contextual logging by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/296](https://github.com/kubernetes/klog/pull/296) - remove side effects of tests by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/305](https://github.com/kubernetes/klog/pull/305) - tests: stop testing with Go 1.14 by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/304](https://github.com/kubernetes/klog/pull/304) #### New Contributors - [@&open-telemetry#8203;jklaw90](https://github.com/jklaw90) made their first contribution in [https://github.com/kubernetes/klog/pull/283](https://github.com/kubernetes/klog/pull/283) - [@&open-telemetry#8203;s3rj1k](https://github.com/s3rj1k) made their first contribution in [https://github.com/kubernetes/klog/pull/280](https://github.com/kubernetes/klog/pull/280) - [@&open-telemetry#8203;cocaccola](https://github.com/cocaccola) made their first contribution in [https://github.com/kubernetes/klog/pull/270](https://github.com/kubernetes/klog/pull/270) - [@&open-telemetry#8203;noaabarki](https://github.com/noaabarki) made their first contribution in [https://github.com/kubernetes/klog/pull/281](https://github.com/kubernetes/klog/pull/281) - [@&open-telemetry#8203;katexochen](https://github.com/katexochen) made their first contribution in [https://github.com/kubernetes/klog/pull/293](https://github.com/kubernetes/klog/pull/293) **Full Changelog**: kubernetes/klog@v2.40.1...v2.50.0 ### [`v2.40.1`](https://github.com/kubernetes/klog/releases/tag/v2.40.1): Prepare klog release for Kubernetes v1.24 (Take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.40.0...v2.40.1) #### What's Changed - Using OS targeted go files to separate out the username logic. by [@&open-telemetry#8203;phillipsj](https://github.com/phillipsj) in [https://github.com/kubernetes/klog/pull/271](https://github.com/kubernetes/klog/pull/271) - Recover from nil pointers when logging by [@&open-telemetry#8203;dims](https://github.com/dims) in [https://github.com/kubernetes/klog/pull/279](https://github.com/kubernetes/klog/pull/279) #### New Contributors - [@&open-telemetry#8203;phillipsj](https://github.com/phillipsj) made their first contribution in [https://github.com/kubernetes/klog/pull/271](https://github.com/kubernetes/klog/pull/271) **Full Changelog**: kubernetes/klog@v2.40.0...v2.40.1 ### [`v2.40.0`](https://github.com/kubernetes/klog/releases/tag/v2.40.0): Prepare klog release for Kubernetes v1.24 [Compare Source](https://github.com/kubernetes/klog/compare/v2.30.0...v2.40.0) #### What's Changed - structured logging: support values with line breaks by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/273](https://github.com/kubernetes/klog/pull/273) - Fix klog lock release on panic error by [@&open-telemetry#8203;astraw99](https://github.com/astraw99) in [https://github.com/kubernetes/klog/pull/272](https://github.com/kubernetes/klog/pull/272) - add format test for KObjs by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/276](https://github.com/kubernetes/klog/pull/276) - add Verbose.InfoSDepth by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/277](https://github.com/kubernetes/klog/pull/277) #### Known Issues - [https://github.com/kubernetes/klog/issues/278](https://github.com/kubernetes/klog/issues/278) #### New Contributors - [@&open-telemetry#8203;astraw99](https://github.com/astraw99) made their first contribution in [https://github.com/kubernetes/klog/pull/272](https://github.com/kubernetes/klog/pull/272) **Full Changelog**: kubernetes/klog@v2.30.0...v2.40.0 ### [`v2.30.0`](https://github.com/kubernetes/klog/releases/tag/v2.30.0): Prepare klog release for Kubernetes v1.23 (take 2) [Compare Source](https://github.com/kubernetes/klog/compare/v2.20.0...v2.30.0) #### What's Changed - Fix logcheck exit function by [@&open-telemetry#8203;luyou86](https://github.com/luyou86) in [https://github.com/kubernetes/klog/pull/265](https://github.com/kubernetes/klog/pull/265) - custom marshaler for ObjectRef by [@&open-telemetry#8203;pohly](https://github.com/pohly) in [https://github.com/kubernetes/klog/pull/266](https://github.com/kubernetes/klog/pull/266) #### New Contributors - [@&open-telemetry#8203;luyou86](https://github.com/luyou86) made their first contribution in [https://github.com/kubernetes/klog/pull/265](https://github.com/kubernetes/klog/pull/265) **Full Changelog**: kubernetes/klog@v2.20.0...v2.30.0 ### [`v2.20.0`](https://github.com/kubernetes/klog/releases/tag/v2.20.0): Prepare klog release for Kubernetes v1.23 [Compare Source](https://github.com/kubernetes/klog/compare/v2.10.0...v2.20.0) Changes are here : kubernetes/klog@v2.10.0...v2.20.0 since we moved to logr v1.0.0, there are incompatible changes: - klogger.Enabled: changed from func() bool to func(int) bool - klogger.Info: changed from func(string, ...interface{}) to func(int, string, ...interface{}) - klogger.V: removed - klogger.WithCallDepth: changed from func(int) github.com/go-logr/logr.Logger to func(int) github.com/go-logr/logr.LogSink - klogger.WithName: changed from func(string) github.com/go-logr/logr.Logger to func(string) github.com/go-logr/logr.LogSink - klogger.WithValues: changed from func(...interface{}) github.com/go-logr/logr.Logger to func(...interface{}) github.com/go-logr/logr.LogSink [`83653a6`](https://github.com/kubernetes/klog/commit/83653a6deebf) Update to newest versions of golang 1.17.x [`d648c2e`](https://github.com/kubernetes/klog/commit/d648c2e42d30) fix file-based filtering symbolization [`8ee3d65`](https://github.com/kubernetes/klog/commit/8ee3d652c96b) export ClearLogger [`4171f3c`](https://github.com/kubernetes/klog/commit/4171f3c1be1b) Switching to logr tag v1.0.0 [`9ab3c2b`](https://github.com/kubernetes/klog/commit/9ab3c2b56cb2) add serathius as approvers of klog ### [`v2.10.0`](https://github.com/kubernetes/klog/releases/tag/v2.10.0): One more change to support 1.22 release [Compare Source](https://github.com/kubernetes/klog/compare/v2.9.0...v2.10.0) Changes are here : kubernetes/klog@v2.9.0...v2.10.0 new function added: func KObjs(arg interface{}) []ObjectRef ### [`v2.9.0`](https://github.com/kubernetes/klog/releases/tag/v2.9.0): Prepare release for Kubernetes v1.22 [Compare Source](https://github.com/kubernetes/klog/compare/v2.8.0...v2.9.0) Changes are here : kubernetes/klog@v2.8.0...v2.9.0 [`6a9ef3f`](https://github.com/kubernetes/klog/commit/6a9ef3fa9a15) fix typo [`59f7cb5`](https://github.com/kubernetes/klog/commit/59f7cb505f58) fix byte array display in InfoS and ErrorS [`cf22f1e`](https://github.com/kubernetes/klog/commit/cf22f1e79721) Call logr with call depth [`e95c7e3`](https://github.com/kubernetes/klog/commit/e95c7e303755) make SetLogger thread-safe [`2728fe1`](https://github.com/kubernetes/klog/commit/2728fe192acc) check usage of format specifier in structured log func [`a18bc97`](https://github.com/kubernetes/klog/commit/a18bc976a212) Fix by pr suggestions [`4e4135c`](https://github.com/kubernetes/klog/commit/4e4135c3dd8a) Add check for InfoS & ErrorS parameters ### [`v2.8.0`](https://github.com/kubernetes/klog/releases/tag/v2.8.0): Bug fixes for structured logging for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.7.0...v2.8.0) ### [`v2.7.0`](https://github.com/kubernetes/klog/releases/tag/v2.7.0): Miscellaneous fixes for structured logging for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.6.0...v2.7.0) Changes are here : kubernetes/klog@v2.6.0...v2.7.0 ### [`v2.6.0`](https://github.com/kubernetes/klog/releases/tag/v2.6.0): Adding a linter for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.5.0...v2.6.0) Changes are here : kubernetes/klog@v2.5.0...v2.6.0 please see https://github.com/kubernetes/klog/tree/master/hack/tools/logcheck ### [`v2.5.0`](https://github.com/kubernetes/klog/releases/tag/v2.5.0): Prepare release for Kubernetes v1.21 [Compare Source](https://github.com/kubernetes/klog/compare/v2.4.0...v2.5.0) Changes are here : kubernetes/klog@v2.4.0...v2.5.0 klog.go has new API: +func ErrorSDepth(depth int, err error, msg string, keysAndValues ...interface{}) { +func InfoSDepth(depth int, msg string, keysAndValues ...interface{}) { klogr/klogr.go has new API: func (l klogger) WithCallDepth(depth int) logr.Logger { func NewWithOptions(options ...Option) logr.Logger { func WithFormat(format Format) Option { ### [`v2.4.0`](https://github.com/kubernetes/klog/releases/tag/v2.4.0): Prepare release for Kubernetes v1.20 [Compare Source](https://github.com/kubernetes/klog/compare/v2.3.0...v2.4.0) Changes are here : kubernetes/klog@v2.3.0...v2.4.0 ### [`v2.3.0`](https://github.com/kubernetes/klog/releases/tag/v2.3.0): Fix Typo-ed Method Error -> ErrorS [Compare Source](https://github.com/kubernetes/klog/compare/v2.2.0...v2.3.0) Changes are here : kubernetes/klog@v2.2.0...v2.3.0 ### [`v2.2.0`](https://github.com/kubernetes/klog/releases/tag/v2.2.0): Dependency update and bugfix for InfoS [Compare Source](https://github.com/kubernetes/klog/compare/2.1.0...v2.2.0) - [`2e691eb`](https://github.com/kubernetes/klog/commit/2e691eb3eeb3) Fix missing fields in verbose InfoS - [`966c986`](https://github.com/kubernetes/klog/commit/966c98681ca0) feat use go-logr v0.2.0 Changes are here : kubernetes/klog@v2.1.0...v2.2.0 ### [`v2.1.0`](https://github.com/kubernetes/klog/releases/tag/v2.1.0): Better support for Structured Logging [Compare Source](https://github.com/kubernetes/klog/compare/v2.0.0...2.1.0) We are now enforcing API compatibility, added Windows based tests, and have tweaked the structured logging methods after some real world experience updating kubernetes main repo. - [`bbd9ca1`](https://github.com/kubernetes/klog/commit/bbd9ca1) Add tests for error in InfoS - [`1ccc0e1`](https://github.com/kubernetes/klog/commit/1ccc0e1) fix imported bug time encode format form kvlistFormat - [`dd4d1a6`](https://github.com/kubernetes/klog/commit/dd4d1a6) fix typo in README.md - [`49123d4`](https://github.com/kubernetes/klog/commit/49123d4) ErrorS(nil, ...) should call loggr.Error(nil, ...) - [`5b199cd`](https://github.com/kubernetes/klog/commit/5b199cd) Fix documentation for V(level) - [`d1eb30f`](https://github.com/kubernetes/klog/commit/d1eb30f) Add apidiff script to check go signature changes - [`dc505bf`](https://github.com/kubernetes/klog/commit/dc505bf) Switch slack channel to #klog - [`a47ebb9`](https://github.com/kubernetes/klog/commit/a47ebb9) Add example for co-existence of klog v1 and v2 - [`134f148`](https://github.com/kubernetes/klog/commit/134f148) logName(): lazily lookup userName instead of on init() - [`db06a1b`](https://github.com/kubernetes/klog/commit/db06a1b) fix serialization of special html chars - [`5727d2a`](https://github.com/kubernetes/klog/commit/5727d2a) Fix Windows integration tests - [`edbc1d3`](https://github.com/kubernetes/klog/commit/edbc1d3) test(\*): TestRollover failed randomly on Windows - [`6f99060`](https://github.com/kubernetes/klog/commit/6f99060) Add LogToStderr, a programatic way to log exclusively to stderr or not ### [`v2.0.0`](https://github.com/kubernetes/klog/releases/tag/v2.0.0): Release to support Kubernetes v1.19 [Compare Source](https://github.com/kubernetes/klog/compare/v1.0.0...v2.0.0) Beware of type change: `Verbose` New Methods: - `SetLogger` (override logger to set a custom implementation) - `InfoS` (structured logging) - `ErrorS` (structured logging) Changes are here : kubernetes/klog@v2.0.0-rc.1...v2.0.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "on tuesday" (UTC), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/open-telemetry/opentelemetry-collector-contrib). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy44Ny4yIiwidXBkYXRlZEluVmVyIjoiMzcuODcuMiIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: opentelemetrybot <107717825+opentelemetrybot@users.noreply.github.com> Co-authored-by: Yang Song <songy23@users.noreply.github.com> Co-authored-by: Tyler Helmuth <12352919+TylerHelmuth@users.noreply.github.com>
What this PR does / why we need it:
This makes preparing parameters for a log call run in constant time, regardless of the number of slice entries:
Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged):Related-to: kubernetes/kubernetes#106945
Special notes for your reviewer:
Release note: