From 3055abd4a17573a735a875c8cf77db4321c92138 Mon Sep 17 00:00:00 2001 From: Nicholas Nezis Date: Tue, 16 Sep 2025 12:19:06 -0400 Subject: [PATCH] Add http_method option to HTTP output configuration Signed-off-by: Nicholas Nezis --- pipeline/outputs/http.md | 1 + 1 file changed, 1 insertion(+) diff --git a/pipeline/outputs/http.md b/pipeline/outputs/http.md index 6c34adcc0..379a77468 100644 --- a/pipeline/outputs/http.md +++ b/pipeline/outputs/http.md @@ -25,6 +25,7 @@ The plugin supports the following configuration parameters: | `allow_duplicated_headers` | Specify if duplicated headers are allowed. If a duplicated header is found, the latest key/value set is preserved. | `true` | | `log_response_payload` | Specify if the response payload should be logged or not. | `true` | | `header_tag` | Specify an optional HTTP header field for the original message tag. | _none_ | +| `http_method` | Specify POST vs PUT HTTP Method. | `POST` | | `header` | Add a HTTP header key/value pair. Multiple headers can be set. | _none_ | | `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` | | `json_date_format` | Specify the format of the date. Supported formats: `double`, `epoch`, `iso8601`, `java_sql_timestamp`. | `double` |