-
Notifications
You must be signed in to change notification settings - Fork 5k
Update decode_json_fields.asciidoc #25056
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
Merged
Changes from 1 commit
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
fc15f7e
Update decode_json_fields.asciidoc
leahleahy 7c356c4
Update libbeat/processors/actions/docs/decode_json_fields.asciidoc
leahleahy fae051d
Update libbeat/processors/actions/docs/decode_json_fields.asciidoc
leahleahy 9bb2860
Update libbeat/processors/actions/docs/decode_json_fields.asciidoc
leahleahy c9cc5c1
Update decode_json_fields.asciidoc
leahleahy 1a677fa
Update decode_json_fields.asciidoc
leahleahy b7b920a
Update libbeat/processors/actions/docs/decode_json_fields.asciidoc
bmorelli25 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,26 +23,26 @@ processors: | |
| The `decode_json_fields` processor has the following configuration settings: | ||
|
|
||
| `fields`:: The fields containing JSON strings to decode. | ||
| `process_array`:: (Optional) A boolean that specifies whether to process | ||
| arrays. The default is false. | ||
| `max_depth`:: (Optional) The maximum parsing depth. A value of 1 will decode the | ||
| `process_array`:: (Optional) A Boolean that specifies whether to process | ||
| arrays. The default is `false`. | ||
| `max_depth`:: (Optional) The maximum parsing depth. A value of one will decode the | ||
|
leahleahy marked this conversation as resolved.
Outdated
|
||
| JSON objects in fields indicated in `fields`, a value of 2 will also decode the | ||
|
leahleahy marked this conversation as resolved.
Outdated
|
||
| objects embedded in the fields of these parsed documents. The default is 1. | ||
| objects embedded in the fields of these parsed documents. The default is `1`. | ||
| `target`:: (Optional) The field under which the decoded JSON will be written. By | ||
| default the decoded JSON object replaces the string field from which it was | ||
| default, the decoded JSON object replaces the string field from which it was | ||
| read. To merge the decoded JSON fields into the root of the event, specify | ||
| `target` with an empty string (`target: ""`). Note that the `null` value (`target:`) | ||
| is treated as if the field was not set at all. | ||
| `overwrite_keys`:: (Optional) A boolean that specifies whether keys that already | ||
| is treated as if the field was not set. | ||
| `overwrite_keys`:: (Optional) A Boolean that specifies whether keys already | ||
|
leahleahy marked this conversation as resolved.
Outdated
|
||
| exist in the event are overwritten by keys from the decoded JSON object. The | ||
| default value is false. | ||
| `expand_keys`:: (Optional) A boolean that specifies whether keys in the decoded JSON | ||
| should be recursively de-dotted, and expanded into a hierarchical object structure. | ||
| default value is `false`. | ||
| `expand_keys`:: (Optional) A Boolean that specifies whether keys in the decoded JSON | ||
| should be recursively de-dotted and expanded into a hierarchical object structure. | ||
| For example, `{"a.b.c": 123}` would be expanded into `{"a":{"b":{"c":123}}}`. | ||
| `add_error_key`:: (Optional) If it set to true, in case of error while decoding json keys | ||
| `error` field is going to be part of event with error message. If it set to false, there | ||
| will not be any error in event's field. Even error occurs while decoding json keys. The | ||
| default value is false. | ||
| `document_id`:: (Optional) JSON key to use as the document id. If configured, | ||
| the field will be removed from the original json document and stored in | ||
| `add_error_key`:: (Optional) If it set to `true`, in case of error while decoding JSON keys | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This edit needs more work. The sentence is hard to parse and has grammatical issues.
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I reworked this, let me know what you think! |
||
| `error` field is going to be part of event with error message. If it set to `false`, there | ||
| will not be any error in event's field. Even error occurs while decoding JSON keys. The | ||
| default value is `false`. | ||
| `document_id`:: (Optional) JSON key that's used as the document ID. If configured, | ||
| the field will be removed from the original JSON document and stored in | ||
| `@metadata._id` | ||
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.
Uh oh!
There was an error while loading. Please reload this page.