Skip to content

Commit

Permalink
[filebeat][GCS] - Made input GA and updated the docs accordingly (#37127
Browse files Browse the repository at this point in the history
)

* made gcs input GA and updated the docs accordingly

* updated changelog

---------

Co-authored-by: Bharat Pasupula <123897612+bhapas@users.noreply.github.com>
  • Loading branch information
ShourieG and bhapas authored Nov 20, 2023
1 parent d66a000 commit 99c27a5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,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*

Expand Down
4 changes: 1 addition & 3 deletions x-pack/filebeat/docs/inputs/input-gcs.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,6 @@
<titleabbrev>Google Cloud Storage</titleabbrev>
++++

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
Expand Down Expand Up @@ -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.
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.
4 changes: 2 additions & 2 deletions x-pack/filebeat/input/gcs/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 99c27a5

Please sign in to comment.