Skip to content

Commit 8a79a3c

Browse files
mergify[bot]kvch
andauthored
Make filestream input GA (#26127) (#26202)
(cherry picked from commit a3b642b) Co-authored-by: Noémi Ványi <[email protected]>
1 parent cf89d91 commit 8a79a3c

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

CHANGELOG.next.asciidoc

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -570,6 +570,8 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
570570
- In Cisco Umbrella fileset add users from cisco.umbrella.identities to related.user. {pull}25776[25776]
571571
- Add fingerprint processor to generate fixed ids for `google_workspace` events. {pull}25841[25841]
572572
- Enhance GCP module to populate orchestrator.* fields for GKE / K8S logs {pull}25368[25368]
573+
- http_endpoint: Support multiple documents in a single request by POSTing an array or NDJSON format. {pull}25764[25764]
574+
- Make `filestream` input GA. {pull}26127[26127]
573575

574576
*Heartbeat*
575577

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
@@ -2441,7 +2441,7 @@ filebeat.inputs:
24412441
#
24422442
# Possible options are:
24432443
# * log: Reads every line of the log file (default)
2444-
# * filestream: Improved version of log input. Experimental.
2444+
# * filestream: Improved version of log input
24452445
# * stdin: Reads the standard in
24462446

24472447
#------------------------------ 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)