start-ilm.asciidoc 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. // tag::cloud[]
  2. In order to start {ilm} we need to go to Kibana and execute the <<ilm-start, start command>>.
  3. **Use {kib}**
  4. //tag::kibana-api-ex[]
  5. . Log in to the {ess-console}[{ecloud} console].
  6. +
  7. . On the **Elasticsearch Service** panel, click the name of your deployment.
  8. +
  9. NOTE:
  10. If the name of your deployment is disabled your {kib} instances might be
  11. unhealthy, in which case please contact https://support.elastic.co[Elastic Support].
  12. If your deployment doesn't include {kib}, all you need to do is
  13. {cloud}/ec-access-kibana.html[enable it first].
  14. . Open your deployment's side navigation menu (placed under the Elastic logo in the upper left corner)
  15. and go to **Dev Tools > Console**.
  16. +
  17. [role="screenshot"]
  18. image::images/kibana-console.png[{kib} Console,align="center"]
  19. . <<ilm-start, Start>> {ilm}:
  20. +
  21. [source,console]
  22. ----
  23. POST _ilm/start
  24. ----
  25. +
  26. The reponse will look like this:
  27. +
  28. [source,console-result]
  29. ----
  30. {
  31. "acknowledged": true
  32. }
  33. ----
  34. // TESTRESPONSE[skip:the result is for illustrating purposes only]
  35. +
  36. . Verify {ilm} is now running:
  37. +
  38. [source,console]
  39. ----
  40. GET _ilm/status
  41. ----
  42. +
  43. The reponse will look like this:
  44. +
  45. [source,console-result]
  46. ----
  47. {
  48. "operation_mode": "RUNNING"
  49. }
  50. ----
  51. // TESTRESPONSE[skip:the result is for illustrating purposes only]
  52. //end::kibana-api-ex[]
  53. // end::cloud[]
  54. // tag::self-managed[]
  55. <<ilm-start, Start ILM>>:
  56. [source,console]
  57. ----
  58. POST _ilm/start
  59. ----
  60. The reponse will look like this:
  61. [source,console-result]
  62. ----
  63. {
  64. "acknowledged": true
  65. }
  66. ----
  67. // TESTRESPONSE[skip:the result is for illustrating purposes only]
  68. Verify {ilm} is now running:
  69. [source,console]
  70. ----
  71. GET _ilm/status
  72. ----
  73. The reponse will look like this:
  74. [source,console-result]
  75. ----
  76. {
  77. "operation_mode": "RUNNING"
  78. }
  79. ----
  80. // end::self-managed[]