From 6585bc353bf27cd1a2cb27f1898e29711260c565 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 15 Apr 2025 16:54:35 +0000 Subject: [PATCH] Documented path option for data prepper http sink (#9593) * Documented path option for data prepper http sink Signed-off-by: Zeeshan Alam * Update _data-prepper/pipelines/configuration/sources/http.md Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> Signed-off-by: Zeeshan Alam --------- Signed-off-by: Zeeshan Alam Signed-off-by: Zeeshan Alam Co-authored-by: Zeeshan Alam Co-authored-by: Naarcha-AWS <97990722+Naarcha-AWS@users.noreply.github.com> (cherry picked from commit fd79312c7aa89924b45babb4cb46bd144921f75f) Signed-off-by: github-actions[bot] --- _data-prepper/pipelines/configuration/sources/http.md | 1 + 1 file changed, 1 insertion(+) diff --git a/_data-prepper/pipelines/configuration/sources/http.md b/_data-prepper/pipelines/configuration/sources/http.md index 304a625822..deb035b220 100644 --- a/_data-prepper/pipelines/configuration/sources/http.md +++ b/_data-prepper/pipelines/configuration/sources/http.md @@ -15,6 +15,7 @@ The `http` plugin accepts HTTP requests from clients. The following table descri Option | Required | Type | Description :--- | :--- | :--- | :--- port | No | Integer | The port that the source is running on. Default value is `2021`. Valid options are between `0` and `65535`. +path | No | String | The URI path for log ingestion should start with a forward slash (/), for example, `/${pipelineName}/logs`. The `${pipelineName}` placeholder will be replaced with the pipeline name. The default value is `/log/ingest`. health_check_service | No | Boolean | Enables the health check service on the `/health` endpoint on the defined port. Default value is `false`. unauthenticated_health_check | No | Boolean | Determines whether or not authentication is required on the health check endpoint. OpenSearch Data Prepper ignores this option if no authentication is defined. Default value is `false`. request_timeout | No | Integer | The request timeout, in milliseconds. Default value is `10000`.