fix: conflicting types of log fields in json output #5592
Merged
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.
Summary
ScaledJob is an object in logs during setup, but a string later. So I change name to scaledJob.Name in the latter cases.
Details
When enabling json log format and debug level on the keda operator field ScaledObject has a value of type object during setup, but later is contains a string.
Examples
I have pretty printed the log lines for readability.
During setup
Later
Effect
For me this prevents logs from being ingested into OpenSearch (using fluent bit), but it ought to cause problems with other objects stores as well.
Error message
Since I haven't explicitly set the type of the field ScaledObject in OpenSearch it will get the type object when the setup rows are ingested. Later this will cause errors like:
Checklist