-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
docs(vrl): Add documentation for new object_from_array
function
#21969
base: master
Are you sure you want to change the base?
Conversation
Datadog ReportBranch report: ✅ 0 Failed, 7 Passed, 0 Skipped, 25.53s Total Time |
68feeae
to
b35469a
Compare
remap: functions: object_from_array: { | ||
category: "Object" | ||
description: """ | ||
Iterate over either one or a pair of arrays and create an object out of all the key-value pairs contained in them. |
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.
Iterate over either one or a pair of arrays and create an object out of all the key-value pairs contained in them. | |
Iterate over either one array of arrays or a pair of arrays and create an object out of all the key-value pairs contained in them. |
Is this more correct, by chance?
Any entries that are missing the value use `null` instead. | ||
Any keys that are `null` skip the corresponding value. |
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.
Any entries that are missing the value use `null` instead. | |
Any keys that are `null` skip the corresponding value. | |
Any entries with no value use `null` instead. | |
Any keys that are `null` skip the corresponding value. |
It does happen. But it is on a weekly schedule. |
I mark PRs like with a milestone so that we remember to include them in the next minor release. |
Summary
Ref: vectordotdev/vrl#1164 vectordotdev/vrl#1176 vectordotdev/vrl#1177
Change Type
Is this a breaking change?
How did you test this PR?
N/A
Does this PR include user facing changes?
Checklist
Cargo.lock
), pleaserun
dd-rust-license-tool write
to regenerate the license inventory and commit the changes (if any). More details here.References