logstash/docs/static/monitoring/troubleshooting.asciidoc
Karen Metts 081ec78168
[Doc]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>
2020-04-14 15:47:56 -04:00

36 lines
853 B
Text

[role="xpack"]
[[monitoring-troubleshooting]]
=== Troubleshooting monitoring in Logstash
++++
<titleabbrev>Troubleshooting</titleabbrev>
++++
[float]
==== Logstash Monitoring Not Working After Upgrade
When upgrading from older versions, the built-in `logstash_system` user is
disabled for security reasons. To resume monitoring:
. Change the `logstash_system` password:
+
--
[source, sh]
---------------------------------------------------------------
PUT _security/user/logstash_system/_password
{
"password": "newpassword"
}
---------------------------------------------------------------
//CONSOLE
--
. Re-enable the `logstash_system` user:
+
--
[source, sh]
---------------------------------------------------------------
PUT _security/user/logstash_system/_enable
---------------------------------------------------------------
//CONSOLE
--