From 1c35dbf6cc467ffd61396430eab9e2e1458dc8a4 Mon Sep 17 00:00:00 2001 From: Shourie Ganguly Date: Wed, 15 Nov 2023 11:09:35 +0530 Subject: [PATCH 1/2] made gcs input GA and updated the docs accordingly --- x-pack/filebeat/docs/inputs/input-gcs.asciidoc | 4 +--- x-pack/filebeat/input/gcs/input.go | 4 ++-- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/x-pack/filebeat/docs/inputs/input-gcs.asciidoc b/x-pack/filebeat/docs/inputs/input-gcs.asciidoc index 3f8061739c7..b73e6ca5232 100644 --- a/x-pack/filebeat/docs/inputs/input-gcs.asciidoc +++ b/x-pack/filebeat/docs/inputs/input-gcs.asciidoc @@ -9,8 +9,6 @@ Google Cloud Storage ++++ -Beta [Input] - Use the `google cloud storage input` to read content from files stored in buckets which reside on your Google Cloud. The input can be configured to work with and without polling, though currently, if polling is disabled it will only perform a one time passthrough, list the file contents and end the process. Polling is generally recommented for most cases @@ -405,4 +403,4 @@ In this configuration even though we have specified `max_workers = 10`, `poll = will override these values with their own respective values which are defined as part of their sub attibutes. -NOTE: Since this is an experimental (beta) input, any feedback is welcome, which will help us optimise and make it better going forward. \ No newline at end of file +NOTE: Any feedback is welcome which will help us further optimize this input. Please feel free to open a github issue for any bugs or feature requests. \ No newline at end of file diff --git a/x-pack/filebeat/input/gcs/input.go b/x-pack/filebeat/input/gcs/input.go index ee9684d0213..97b14dc2b34 100644 --- a/x-pack/filebeat/input/gcs/input.go +++ b/x-pack/filebeat/input/gcs/input.go @@ -36,9 +36,9 @@ const ( func Plugin(log *logp.Logger, store cursor.StateStore) v2.Plugin { return v2.Plugin{ Name: inputName, - Stability: feature.Beta, + Stability: feature.Stable, Deprecated: false, - Info: "Google Cloud Storage (Beta)", + Info: "Google Cloud Storage", Doc: "Collect logs from Google Cloud Storage Service", Manager: &cursor.InputManager{ Logger: log, From e2bf44cfa13572f1a0d3e4c638accf866afae43a Mon Sep 17 00:00:00 2001 From: Shourie Ganguly Date: Wed, 15 Nov 2023 11:27:06 +0530 Subject: [PATCH 2/2] updated changelog --- CHANGELOG.next.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.next.asciidoc b/CHANGELOG.next.asciidoc index cccaace964a..03a6356a3cc 100644 --- a/CHANGELOG.next.asciidoc +++ b/CHANGELOG.next.asciidoc @@ -209,6 +209,7 @@ Setting environmental variable ELASTIC_NETINFO:false in Elastic Agent pod will d - Add setup option `--force-enable-module-filesets`, that will act as if all filesets have been enabled in a module during setup. {issue}30915[30915] {pull}99999[99999] - Make CEL input log current transaction ID when request tracing is turned on. {pull}37065[37065] - Add request trace logging to http_endpoint input. {issue}36951[36951] {pull}36957[36957] +- Made GCS input GA and updated docs accordingly. {pull}37127[37127] *Auditbeat*