From 53651c48821280fdaca9b03dd67411b35683b44c Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Tue, 31 Mar 2026 22:14:59 +0200 Subject: [PATCH] docs: outputs: standard-output: add otlp_json and otlp_json_pretty format values - pipeline/outputs/standard-output.md: add `otlp_json` and `otlp_json_pretty` to the `format` parameter This is a code change with no corresponding doc PR. Signed-off-by: Eric D. Schabell --- pipeline/outputs/standard-output.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/outputs/standard-output.md b/pipeline/outputs/standard-output.md index f4330bbf6..0246d81ed 100644 --- a/pipeline/outputs/standard-output.md +++ b/pipeline/outputs/standard-output.md @@ -10,7 +10,7 @@ The _standard output_ plugin prints ingested data to standard output. | Key | Description | Default | | --- | ----------- | ------- | -| `format` | Specify the data format to be printed. Supported formats are `msgpack`, `json`, `json_lines` and `json_stream`. | `msgpack` | +| `format` | Specify the data format to be printed. Supported formats are `msgpack`, `json`, `json_lines`, `json_stream`, `otlp_json`, and `otlp_json_pretty`. | `msgpack` | | `json_date_format` | Specify the format of the date. Supported formats are `double`, `epoch`, `epoch_ms`, `iso8601` (for example, `2018-05-30T09:39:52.000681Z`) and `java_sql_timestamp` (for example, `2018-05-30 09:39:52.000681`). | `double` | | `json_date_key` | Specify the name of the time key in the output record. To disable the time key set the value to `false`. | `date` | | `workers` | The number of [workers](../../administration/multithreading.md#outputs) to perform flush operations for this output. | `1` |