You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Link code for "Kibana server is not ready yet" to related doc (#241345)
Resolves [issue](#158518)
## Summary
Adding the respective troubleshooting document link to our logs for the
"Kibana server is not ready yet" error. This helps the support team by
having a possible decrease in tickets where customers are able to do
some troubleshooting before opening a ticket and better SDHs as the
support team would work through the troubleshooting docs prior to
opening the SDH.
Related doc being referenced in the ticket:
https://www.elastic.co/docs/troubleshoot/kibana/error-server-not-ready
---------
Co-authored-by: kibanamachine <[email protected]>
Co-authored-by: Elastic Machine <[email protected]>
this.log.debug(`Kibana server is not ready yet ${req.method}:${req.url.href}.`);
120
+
this.log.debug(
121
+
`Kibana server is not ready yet ${req.method}:${req.url.href}. For troubleshooting guidance, see ${deps.docLinks.links.server.troubleshootServerNotReady}`
122
+
);
118
123
119
124
// If server is not ready yet, because plugins or core can perform
120
125
// long running tasks (build assets, saved objects migrations etc.)
0 commit comments