From 7d0373aa8e60128b05ab1691d4df287d1f7273cf Mon Sep 17 00:00:00 2001 From: "Eric D. Schabell" Date: Thu, 19 Mar 2026 18:12:52 +0100 Subject: [PATCH] docs: outputs: vivo-exporter: general doc updates and cleanup - Fix empty_stream_on_read default: Off -> off - Use Title_Case for all keys in .conf examples Applies to #2412 Signed-off-by: Eric D. Schabell --- pipeline/outputs/vivo-exporter.md | 42 +++++++++++++++---------------- 1 file changed, 21 insertions(+), 21 deletions(-) diff --git a/pipeline/outputs/vivo-exporter.md b/pipeline/outputs/vivo-exporter.md index a530206c9..f481af5e0 100644 --- a/pipeline/outputs/vivo-exporter.md +++ b/pipeline/outputs/vivo-exporter.md @@ -8,7 +8,7 @@ This plugin supports the following configuration parameters: | Key | Description | Default | | --- | ----------- | ---------| -| `empty_stream_on_read` | If enabled, when an HTTP client consumes the data from a stream, the stream content will be removed. | `Off` | +| `empty_stream_on_read` | If enabled, when an HTTP client consumes the data from a stream, the stream content will be removed. | `off` | | `host` | The network address for the HTTP server to listen on. | `0.0.0.0` | | `http_cors_allow_origin` | Specify the value for the HTTP `Access-Control-Allow-Origin` header (CORS). | _none_ | | `port` | The TCP port for the HTTP server to listen on. | `2025` | @@ -44,18 +44,18 @@ pipeline: ```text [INPUT] - name dummy - tag events - rate 2 + Name dummy + Tag events + Rate 2 [OUTPUT] - name vivo_exporter - match * - host 0.0.0.0 - port 2025 - empty_stream_on_read off - stream_queue_size 20M - http_cors_allow_origin * + Name vivo_exporter + Match * + Host 0.0.0.0 + Port 2025 + Empty_Stream_On_Read off + Stream_Queue_Size 20M + Http_Cors_Allow_Origin * ``` {% endtab %} @@ -102,13 +102,13 @@ The following example generates dummy log events for consumption by using `curl` ```text [INPUT] - name dummy - tag events - rate 2 + Name dummy + Tag events + Rate 2 [OUTPUT] - name vivo_exporter - match * + Name vivo_exporter + Match * ``` {% endtab %} @@ -215,13 +215,13 @@ pipeline: ```text [INPUT] - name opentelemetry - tag otel.logs - port 4318 + Name opentelemetry + Tag otel.logs + Port 4318 [OUTPUT] - name vivo_exporter - match * + Name vivo_exporter + Match * ``` {% endtab %}