troubleshooting.asciidoc 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. [[monitoring-troubleshooting]]
  2. == Troubleshooting monitoring
  3. Use the information in this section to troubleshoot common problems and find
  4. answers for frequently asked questions. See also
  5. {logstash-ref}/monitoring-troubleshooting.html[Troubleshooting monitoring in {ls}].
  6. For issues that you cannot fix yourself … we’re here to help.
  7. If you are an existing Elastic customer with a support contract, please create
  8. a ticket in the
  9. https://support.elastic.co/customers/s/login/[Elastic Support portal].
  10. Or post in the https://discuss.elastic.co/[Elastic forum].
  11. [discrete]
  12. [[monitoring-troubleshooting-no-data]]
  13. === No monitoring data is visible in {kib}
  14. *Symptoms*:
  15. There is no information about your cluster on the *Stack Monitoring* page in
  16. {kib}.
  17. *Resolution*:
  18. Check whether the appropriate indices exist on the monitoring cluster. For
  19. example, use the <<cat-indices,cat indices>> command to verify that
  20. there is a `.monitoring-kibana*` index for your {kib} monitoring data and a
  21. `.monitoring-es*` index for your {es} monitoring data. If you are collecting
  22. monitoring data by using {metricbeat} the indices have `-mb` in their names. If
  23. the indices do not exist, review your configuration. For example, see
  24. <<monitoring-production>>.
  25. [discrete]
  26. [[monitoring-troubleshooting-uuid]]
  27. === Monitoring data for some {stack} nodes or instances is missing from {kib}
  28. *Symptoms*:
  29. The *Stack Monitoring* page in {kib} does not show information for some nodes or
  30. instances in your cluster.
  31. *Resolution*:
  32. Verify that the missing items have unique UUIDs. Each {es} node, {ls} node,
  33. {kib} instance, Beat instance, and APM Server is considered unique based on its
  34. persistent UUID, which is found in its `path.data` directory. Alternatively, you
  35. can find the UUIDs in the product logs at startup.
  36. In some cases, you can also retrieve this information via APIs:
  37. * For Beat instances, use the HTTP endpoint to retrieve the `uuid` property.
  38. For example, refer to
  39. {filebeat-ref}/http-endpoint.html[Configure an HTTP endpoint for {filebeat} metrics].
  40. * For {kib} instances, use the
  41. {kibana-ref}/access.html#status[status endpoint] to retrieve the `uuid` property.
  42. * For {ls} nodes, use the
  43. {logstash-ref}/monitoring-logstash.html[monitoring APIs root resource] to
  44. retrieve the `id` property.
  45. TIP: When you install {es}, {ls}, {kib}, APM Server, or Beats, their `path.data`
  46. directory should be non-existent or empty; do not copy this directory from other
  47. installations.