Skip to content

Commit

Permalink
Make filestream input GA (#26127)
Browse files Browse the repository at this point in the history
(cherry picked from commit a3b642b)
  • Loading branch information
kvch authored and mergify-bot committed Jun 8, 2021
1 parent 1a250bd commit 949ef49
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- In Cisco Umbrella fileset add users from cisco.umbrella.identities to related.user. {pull}25776[25776]
- Add fingerprint processor to generate fixed ids for `google_workspace` events. {pull}25841[25841]
- Enhance GCP module to populate orchestrator.* fields for GKE / K8S logs {pull}25368[25368]
- http_endpoint: Support multiple documents in a single request by POSTing an array or NDJSON format. {pull}25764[25764]
- Make `filestream` input GA. {pull}26127[26127]

*Heartbeat*

Expand Down
2 changes: 1 addition & 1 deletion filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ filebeat.inputs:
#
# Possible options are:
# * log: Reads every line of the log file (default)
# * filestream: Improved version of log input. Experimental.
# * filestream: Improved version of log input
# * stdin: Reads the standard in

#------------------------------ Log input --------------------------------
Expand Down
2 changes: 1 addition & 1 deletion filebeat/_meta/config/filebeat.inputs.yml.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ filebeat.inputs:
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
#multiline.match: after

# filestream is an experimental input. It is going to replace log input in the future.
# filestream is an input for collecting log messages from files. It is going to replace log input in the future.
- type: filestream

# Change to true to enable this input configuration.
Expand Down
2 changes: 0 additions & 2 deletions filebeat/docs/inputs/input-filestream.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
[id="{beatname_lc}-input-{type}"]
=== filestream input

beta[]

++++
<titleabbrev>filestream</titleabbrev>
++++
Expand Down
2 changes: 1 addition & 1 deletion filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ filebeat.inputs:
#
# Possible options are:
# * log: Reads every line of the log file (default)
# * filestream: Improved version of log input. Experimental.
# * filestream: Improved version of log input
# * stdin: Reads the standard in

#------------------------------ Log input --------------------------------
Expand Down
2 changes: 1 addition & 1 deletion filebeat/filebeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ filebeat.inputs:
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
#multiline.match: after

# filestream is an experimental input. It is going to replace log input in the future.
# filestream is an input for collecting log messages from files. It is going to replace log input in the future.
- type: filestream

# Change to true to enable this input configuration.
Expand Down
2 changes: 1 addition & 1 deletion filebeat/input/filestream/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ type filestream struct {
func Plugin(log *logp.Logger, store loginp.StateStore) input.Plugin {
return input.Plugin{
Name: pluginName,
Stability: feature.Beta,
Stability: feature.Stable,
Deprecated: false,
Info: "filestream input",
Doc: "The filestream input collects logs from the local filestream service",
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/filebeat.reference.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2441,7 +2441,7 @@ filebeat.inputs:
#
# Possible options are:
# * log: Reads every line of the log file (default)
# * filestream: Improved version of log input. Experimental.
# * filestream: Improved version of log input
# * stdin: Reads the standard in

#------------------------------ Log input --------------------------------
Expand Down
2 changes: 1 addition & 1 deletion x-pack/filebeat/filebeat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ filebeat.inputs:
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
#multiline.match: after

# filestream is an experimental input. It is going to replace log input in the future.
# filestream is an input for collecting log messages from files. It is going to replace log input in the future.
- type: filestream

# Change to true to enable this input configuration.
Expand Down

0 comments on commit 949ef49

Please sign in to comment.