logstash/docs/static/monitoring/monitoring-output.asciidoc
Karen Metts dfe5cc5ee7 Restructure monitoring docs to support new and legacy internal collectors (#11714)
* [Doc] added description of xpack.monitoring.collection.write_direct.enabled setting

* Added page to mark as deprecated the legacy internal collector and fixed all the `xpack.monitoring.*` references

* Included legacy collector file into monitoring overview

* Restructure monitoring docs

* Incorporate review comments

Co-authored-by: andsel <selva.andre@gmail.com>

Fixes #11787
2020-04-14 20:12:28 +00:00

46 lines
No EOL
2 KiB
Text

[float]
[role="xpack"]
[[logstash-monitoring-output]]
==== Output
Like all Logstash pipelines, the purpose of the dedicated monitoring pipeline is
to send events to outputs. In the case of Logstash monitoring, the output
is always an `elasticsearch` output. However, unlike ordinary Logstash pipelines,
the output is configured within the `logstash.yml` settings file via the
`monitoring.elasticsearch.*` settings.
Other than its unique manner of configuration, this `elasticsearch` output
behaves like all `elasticsearch` outputs, including its ability to pause data
collection when issues exist with the output.
IMPORTANT: It is critical that all Logstash nodes share the same setup.
Otherwise, monitoring data might be routed in different ways or to different places.
[float]
[[logstash-monitoring-default]]
===== Default Configuration
If a Logstash node does not explicitly define a monitoring output setting,
the following default configuration is used:
[source,yaml]
---------------------------------------------------
monitoring.elasticsearch.hosts: [ "http://localhost:9200" ]
---------------------------------------------------
All data produced by Logstash monitoring is indexed in the monitoring
cluster by using the `.monitoring-logstash` template, which is managed by the
{ref}/es-monitoring-exporters.html[exporters] within {es}.
If you are working with a cluster that has {security-features} enabled, extra
steps are necessary to properly configure Logstash. For more information, see
<<configuring-logstash>>.
IMPORTANT: When discussing security relative to the `elasticsearch` output,
remember that all users are managed on the production cluster, which is
identified in the `monitoring.elasticsearch.hosts` setting. This is particularly
important when you move from development environments to production
environments, where you often have dedicated monitoring clusters.
For more information about the configuration options for the output, see
<<monitoring-settings>>.