From 61cdd126fcc292a9e0f84718681eca1bd95619cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gonzalo=20Pe=C3=B1a-Castellanos?= Date: Fri, 31 Jul 2026 10:32:24 -0500 Subject: [PATCH] docs: pipeline: outputs: s3: document S3-compatible endpoints MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - use documented examples in endpoint description Signed-off-by: Gonzalo Peña-Castellanos Signed-off-by: Eric D. Schabell --- pipeline/outputs/s3.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipeline/outputs/s3.md b/pipeline/outputs/s3.md index d3bc77cf4..b8df93156 100644 --- a/pipeline/outputs/s3.md +++ b/pipeline/outputs/s3.md @@ -48,7 +48,7 @@ The [Prometheus success/retry/error metrics values](../../administration/monitor | `canned_acl` | [Predefined Canned ACL policy](https://docs.aws.amazon.com/AmazonS3/latest/dev/acl-overview.html#canned-acl) for S3 objects. | _none_ | | `compression` | Compression type for S3 objects. Supported values: `gzip`, `zstd`, `snappy`, `arrow`. When `format` is set to `parquet`, this controls the page-level `codec` inside the Parquet file (supported: `snappy`, `zstd`, `gzip`). `compression=parquet` is deprecated; use `format parquet` instead. See [Compression](#compression). | _none_ | | `content_type` | A standard MIME type for the S3 object, set as the Content-Type HTTP header. | _none_ | -| `endpoint` | Custom endpoint for the S3 API. Endpoints can contain scheme and port. | _none_ | +| `endpoint` | Custom endpoint for the S3 API. Endpoints can contain scheme and port. Set this parameter to send data to an S3-compatible object store other than Amazon S3, such as MinIO or Google Cloud Storage. Requests use path-style addressing (`endpoint/bucket/key`) and are signed with the configured `region`. | _none_ | | `external_id` | Specify an external ID for the STS API. Can be used with the `role_arn` parameter if your role requires an external ID. | _none_ | | `file_delivery_attempt_limit` | File delivery attempt limit. | `1` | | `format` | Set the output format. Supported values: `json_lines`, `otlp_json`, `parquet`. When set to `parquet`, records are converted to Apache Parquet columnar format (requires Apache Arrow Parquet support at compile time). The `compression` option controls the page-level `codec` inside the Parquet file. When set to `otlp_json`, the `log_key` option isn't supported and only `logs` event chunks are converted. | `json_lines` |