Skip to content

Commit a3b642b

Browse files
authored
Make filestream input GA (#26127)
1 parent 7bd96c2 commit a3b642b

File tree

9 files changed

+8
-9
lines changed

9 files changed

+8
-9
lines changed

CHANGELOG.next.asciidoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -814,6 +814,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
814814
- Update PanOS module to parse HIP Match logs. {issue}24350[24350] {pull}25686[25686]
815815
- Enhance GCP module to populate orchestrator.* fields for GKE / K8S logs {pull}25368[25368]
816816
- http_endpoint: Support multiple documents in a single request by POSTing an array or NDJSON format. {pull}25764[25764]
817+
- Make `filestream` input GA. {pull}26127[26127]
817818

818819
*Heartbeat*
819820

filebeat/_meta/config/filebeat.inputs.reference.yml.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ filebeat.inputs:
1111
#
1212
# Possible options are:
1313
# * log: Reads every line of the log file (default)
14-
# * filestream: Improved version of log input. Experimental.
14+
# * filestream: Improved version of log input
1515
# * stdin: Reads the standard in
1616

1717
#------------------------------ Log input --------------------------------

filebeat/_meta/config/filebeat.inputs.yml.tmpl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ filebeat.inputs:
5050
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
5151
#multiline.match: after
5252

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

5656
# Change to true to enable this input configuration.

filebeat/docs/inputs/input-filestream.asciidoc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
[id="{beatname_lc}-input-{type}"]
44
=== filestream input
55

6-
beta[]
7-
86
++++
97
<titleabbrev>filestream</titleabbrev>
108
++++

filebeat/filebeat.reference.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -418,7 +418,7 @@ filebeat.inputs:
418418
#
419419
# Possible options are:
420420
# * log: Reads every line of the log file (default)
421-
# * filestream: Improved version of log input. Experimental.
421+
# * filestream: Improved version of log input
422422
# * stdin: Reads the standard in
423423

424424
#------------------------------ Log input --------------------------------

filebeat/filebeat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ filebeat.inputs:
6262
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
6363
#multiline.match: after
6464

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

6868
# Change to true to enable this input configuration.

filebeat/input/filestream/input.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ type filestream struct {
6464
func Plugin(log *logp.Logger, store loginp.StateStore) input.Plugin {
6565
return input.Plugin{
6666
Name: pluginName,
67-
Stability: feature.Beta,
67+
Stability: feature.Stable,
6868
Deprecated: false,
6969
Info: "filestream input",
7070
Doc: "The filestream input collects logs from the local filestream service",

x-pack/filebeat/filebeat.reference.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2442,7 +2442,7 @@ filebeat.inputs:
24422442
#
24432443
# Possible options are:
24442444
# * log: Reads every line of the log file (default)
2445-
# * filestream: Improved version of log input. Experimental.
2445+
# * filestream: Improved version of log input
24462446
# * stdin: Reads the standard in
24472447

24482448
#------------------------------ Log input --------------------------------

x-pack/filebeat/filebeat.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ filebeat.inputs:
6262
# Note: After is the equivalent to previous and before is the equivalent to to next in Logstash
6363
#multiline.match: after
6464

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

6868
# Change to true to enable this input configuration.

0 commit comments

Comments
 (0)