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

Remove Beats central management #25696

Merged
merged 11 commits into from
May 31, 2021
1 change: 1 addition & 0 deletions CHANGELOG.next.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ https://github.com/elastic/beats/compare/v7.0.0-alpha2...master[Check the HEAD d
- Update to ECS 1.7.0. {pull}22571[22571]
- Add support for SCRAM-SHA-512 and SCRAM-SHA-256 in Kafka output. {pull}12867[12867]
- Remove id_field_data {pull}25239[25239]
- Removed beats central management {pull}25696[25696], {issue}23908[23908]
- MacOSX minimum supported version set to 10.14 {issue}24193{24193}

*Auditbeat*
Expand Down
8 changes: 3 additions & 5 deletions filebeat/docs/howto/load-ingest-pipelines.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,8 @@

The ingest pipelines used to parse log lines are set up automatically the first
time you run {beatname_uc}, assuming the {es} output is enabled. If you're sending
events to {ls}, or plan to use
<<configuration-central-management,{beats} central management>>, you need to
load the ingest pipelines manually. To do this, run the `setup` command with
the `--pipelines` option specified. If you used the
events to {ls} you need to load the ingest pipelines manually. To do this, run the
`setup` command with the `--pipelines` option specified. If you used the
<<modules-command,`modules`>> command to enable modules in the `modules.d`
directory, also specify the `--modules` flag. For example, the following command
loads the ingest pipelines used by all filesets enabled in the system, nginx,
Expand Down Expand Up @@ -44,4 +42,4 @@ PS > .{backslash}{beatname_lc}.exe setup --pipelines --modules system,nginx,mysq

TIP: If you're loading ingest pipelines manually because you want to send events
to {ls}, also see
{logstash-ref}/filebeat-modules.html[Working with {beatname_uc} modules].
{logstash-ref}/filebeat-modules.html[Working with {beatname_uc} modules].
2 changes: 0 additions & 2 deletions filebeat/docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ include::./configuring-howto.asciidoc[]

include::{docdir}/howto/howto.asciidoc[]

include::{libbeat-dir}/shared-central-management.asciidoc[]

include::./modules.asciidoc[]

include::./fields.asciidoc[]
Expand Down
256 changes: 0 additions & 256 deletions libbeat/docs/shared-central-management.asciidoc

This file was deleted.

2 changes: 0 additions & 2 deletions metricbeat/docs/index.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ include::./configuring-howto.asciidoc[]

include::{docdir}/howto/howto.asciidoc[]

include::{libbeat-dir}/shared-central-management.asciidoc[]

include::./modules.asciidoc[]

include::./fields.asciidoc[]
Expand Down
3 changes: 1 addition & 2 deletions x-pack/auditbeat/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ package cmd
import (
auditbeatcmd "github.com/elastic/beats/v7/auditbeat/cmd"
"github.com/elastic/beats/v7/libbeat/cmd"
xpackcmd "github.com/elastic/beats/v7/x-pack/libbeat/cmd"

// Register Auditbeat x-pack modules.
_ "github.com/elastic/beats/v7/x-pack/auditbeat/include"
_ "github.com/elastic/beats/v7/x-pack/libbeat/include"
)

// Name of the beat
Expand All @@ -23,5 +23,4 @@ func init() {
settings := auditbeatcmd.AuditbeatSettings()
settings.ElasticLicensed = true
RootCmd = auditbeatcmd.Initialize(settings)
xpackcmd.AddXPack(RootCmd, auditbeatcmd.Name)
}
Loading