mirror of
https://github.com/elastic/logstash.git
synced 2025-06-29 02:03:30 -04:00
* [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>
36 lines
853 B
Text
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
|
|
--
|