Upgrade readiness status API

[experimental] This functionality is experimental and may be changed or removed completely in a future release. Elastic will take a best effort approach to fix any issues, but experimental features are not subject to the support SLA of official GA features. Check the status of your cluster.

Check the status of your cluster.

Request

GET <kibana host>:<port>/api/upgrade_assistant/status

Response codes

200

Indicates a successful call.

Example

The API returns the following:

  1. {
  2. "readyForUpgrade": false,
  3. "cluster": [
  4. {
  5. "message": "Cluster deprecated issue",
  6. "details": "...",
  7. "level": "warning",
  8. "url": "https://docs.elastic.co/..."
  9. }
  10. ],
  11. "indices": [
  12. {
  13. "message": "Index was created before 6.0",
  14. "details": "...",
  15. "index": "myIndex",
  16. "level": "critical",
  17. "reindex": true,
  18. "url": "https://docs.elastic.co/..."
  19. }
  20. ]
  21. }

To fix indices with the reindex attribute, set to true using the Start or resume reindex API.

Most Popular