Fix copy_values processor documentation (#6630)
The documentation of copy-values has a mistake, the property overwrite_if_to_key_exists used on example is different from the property in the table. In the source code the correct value is `overwrite_if_to_key_exists` Signed-off-by: charlesardsilva <charlesardsilva@gmail.com>
This commit is contained in:
parent
2f42ef540c
commit
09f00d3aa7
|
@ -19,7 +19,7 @@ You can configure the `copy_values` processor with the following options.
|
||||||
| `entries` | Yes | A list of entries to be copied in an event. |
|
| `entries` | Yes | A list of entries to be copied in an event. |
|
||||||
| `from_key` | Yes | The key of the entry to be copied. |
|
| `from_key` | Yes | The key of the entry to be copied. |
|
||||||
| `to_key` | Yes | The key of the new entry to be added. |
|
| `to_key` | Yes | The key of the new entry to be added. |
|
||||||
| `overwrite_if_key_exists` | No | When set to `true`, the existing value is overwritten if `key` already exists in the event. The default value is `false`. |
|
| `overwrite_if_to_key_exists` | No | When set to `true`, the existing value is overwritten if `key` already exists in the event. The default value is `false`. |
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue