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

Add a doc section about APM Agent configuration management #3350

Merged
merged 6 commits into from
Jul 2, 2020
Merged
Changes from 2 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
22 changes: 22 additions & 0 deletions docs/orchestrating-elastic-stack-applications/apm-server.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,28 @@ apm-server-quickstart-apm-server-69b447ddc5-fflc6 1/1 Running 0
[id="{p}-apm-advanced-configuration"]
== Advanced configuration

[id="{p}-apm-agent-central-configuration"]
=== Use APM Agent central configuration
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should we mention that this feature is only available after 7.5.1 ? I had some issues with 7.5.0 when I did some tests.

link:https://www.elastic.co/guide/en/kibana/current/agent-configuration.html[APM Agent configuration management] allows you to configure your APM Agents centrally from within the Kibana APM app. In order to use APM Agent central configuration you need to set up a Kibana endpoint in your APM Server configuration. Using a Kibana managed by ECK makes that as simple as adding a `kibanaRef` attribute to the APM Server specification:
pebrc marked this conversation as resolved.
Show resolved Hide resolved

[source,yaml,subs="attributes,+macros"]
----
cat $$<<$$EOF | kubectl apply -f -
apiVersion: apm.k8s.elastic.co/{eck_crd_version}
kind: ApmServer
metadata:
name: apm-server-quickstart
namespace: default
spec:
version: {version}
count: 1
elasticsearchRef:
name: quickstart
kibanaRef:
name: my-kibana
pebrc marked this conversation as resolved.
Show resolved Hide resolved
EOF
----

[id="{p}-apm-customize-configuration"]
=== Customize the APM Server configuration

Expand Down