Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark the TCP input and the UDP input as GA #8125

Merged
merged 2 commits into from
Aug 29, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ https://github.com/elastic/beats/compare/v6.4.0...master[Check the HEAD diff]

- Fixed a memory leak when harvesters are closed. {pull}7820[7820]
- Fix date format in Mongodb Ingest pipeline. {pull}7974[7974]
- Mark the TCP and UDP input as GA. {pull}8125[8125]

*Heartbeat*

Expand Down
2 changes: 0 additions & 2 deletions filebeat/docs/inputs/input-tcp.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
<titleabbrev>TCP</titleabbrev>
++++

experimental[]

Use the `TCP` input to read events over TCP.

Example configuration:
Expand Down
2 changes: 0 additions & 2 deletions filebeat/docs/inputs/input-udp.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
<titleabbrev>UDP</titleabbrev>
++++

experimental[]

Use the `udp` input to read events over UDP.

Example configuration:
Expand Down
2 changes: 0 additions & 2 deletions filebeat/input/tcp/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ import (
"github.com/elastic/beats/filebeat/util"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/libbeat/logp"
)

Expand All @@ -57,7 +56,6 @@ func NewInput(
outlet channel.Connector,
context input.Context,
) (input.Input, error) {
cfgwarn.Experimental("TCP input type is used")

out, err := outlet(cfg, context.DynamicFields)
if err != nil {
Expand Down
2 changes: 0 additions & 2 deletions filebeat/input/udp/input.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ import (
"github.com/elastic/beats/filebeat/util"
"github.com/elastic/beats/libbeat/beat"
"github.com/elastic/beats/libbeat/common"
"github.com/elastic/beats/libbeat/common/cfgwarn"
"github.com/elastic/beats/libbeat/logp"
)

Expand All @@ -54,7 +53,6 @@ func NewInput(
outlet channel.Connector,
context input.Context,
) (input.Input, error) {
cfgwarn.Experimental("UDP input type is used")

out, err := outlet(cfg, context.DynamicFields)
if err != nil {
Expand Down