Skip to content

Commit f0b86a7

Browse files
committed
Fix typos
1 parent 6361a9e commit f0b86a7

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/reference/enrich-processor/append-processor.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ $$$append-options$$$
1717
| `value` | yes* | - | The value to be appended. Supports [template snippets](docs-content://manage-data/ingest/transform-enrich/ingest-pipelines.md#template-snippets). May specify only one of `value` or `copy_from`. |
1818
| `copy_from` {applies_to}`stack: ga 9.2` | no | - | The origin field which will be appended to `field`, cannot set `value` simultaneously. |
1919
| `allow_duplicates` | no | true | If `false`, the processor does not appendvalues already present in the field. |
20-
| `ignore_empty_values` {applies_to}`stack: ga 9.2` | no | false | If `true`, the processor does not append values that resolve `null` or an empty strings.
21-
| `Media_type` | no | `application/json` | The media type for encoding `value`. Applies only when `value` is a [template snippet](docs-content://manage-data/ingest/transform-enrich/ingest-pipelines.md#template-snippets). Must be one of `application/json`, `text/plain`, or`application/x-www-form-urlencoded`. |
20+
| `ignore_empty_values` {applies_to}`stack: ga 9.2` | no | false | If `true`, the processor does not append values that resolve to `null` or an empty string.
21+
| `media_type` | no | `application/json` | The media type for encoding `value`. Applies only when `value` is a [template snippet](docs-content://manage-data/ingest/transform-enrich/ingest-pipelines.md#template-snippets). Must be one of `application/json`, `text/plain`, or`application/x-www-form-urlencoded`. |
2222
| `description` | no | - | Description of the processor. Useful for describing the purpose of the processor or its configuration. |
2323
| `if` | no | - | Conditionally execute the processor. See [Conditionally run a processor](docs-content://manage-data/ingest/transform-enrich/ingest-pipelines.md#conditionally-run-processor). |
2424
| `ignore_failure` | no | `false` | Ignore failures for the processor. See [Handling pipeline failures](docs-content://manage-data/ingest/transform-enrich/ingest-pipelines.md#handling-pipeline-failures). |
@@ -29,7 +29,7 @@ $$$append-options$$$
2929

3030
### Simple example [append-processor-simple-example]
3131

32-
Here is an that adds the string `"production"` as well as the values of the `app` and `owner` fields to the `tags` field:
32+
Here is an `append` processor definition that adds the string `"production"` as well as the values of the `app` and `owner` fields to the `tags` field:
3333

3434
```js
3535
{
@@ -40,13 +40,13 @@ Here is an that adds the string `"production"` as well as the values of the `app
4040
}
4141
```
4242

43-
### Example using `allow_duplicates` and `ignore_empty_values`
43+
### Example using `allow_duplicates` and `ignore_empty_values` [append-processor-example-using-allow-duplicates-and-ignore-empty-values]
4444

4545
```{applies_to}
4646
stack: ga 9.2
4747
```
4848

49-
By using `allow_duplicates` and `ignore_empty_values`, it is possible to only append the `host.name` to the `related.hosts` if the `host.name` is not empty and if the value not already present in `related.hosts`:
49+
By using `allow_duplicates` and `ignore_empty_values`, it is possible to only append the `host.name` to the `related.hosts` if the `host.name` is not empty and if the value is not already present in `related.hosts`:
5050

5151
```js
5252
{

0 commit comments

Comments
 (0)