Skip to content

Commit

Permalink
Mark the TCP input and the UDP input as GA (#8125) (#8517)
Browse files Browse the repository at this point in the history
* Mark the TCP input and the UDP input as GA

The API and features seems to be stable enough that we mark both of
theses input as GA.

* changelog

(cherry picked from commit 20d1dc2)
  • Loading branch information
ph committed Oct 1, 2018
1 parent 6d23f58 commit 5801309
Show file tree
Hide file tree
Showing 5 changed files with 1 addition and 8 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ https://github.com/elastic/beats/compare/v6.4.0...6.x[Check the HEAD diff]
- Update CRI format to support partial/full tags. {pull}8265[8265]
- Fix some errors happening when stopping syslog input. {pull}8347[8347]
- Fix RFC3339 timezone and nanoseconds parsing with the syslog input. {pull}8346[8346]
- 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 @@ -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 @@ -56,7 +55,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

0 comments on commit 5801309

Please sign in to comment.