-
Notifications
You must be signed in to change notification settings - Fork 25.6k
[DOCS] Fix SLM status response #78584
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
What is this list suppose to be in its exhaustive state? The lower example is `operation_mode:RUNNING` which I've confirmed is valid. @jrodewig 🙏
|
Pinging @elastic/es-docs (Team:Docs) |
|
Pinging @elastic/es-data-management (Team:Data Management) |
|
Thanks @stefnestor. Looking at https://github.com/elastic/elasticsearch/blob/a92a647b9f17d1bddf5c707490a19482c273eda3/x-pack/plugin/core/src/main/java/org/elasticsearch/xpack/core/slm/action/GetSLMStatusAction.java, we will only return one of three statuses: Those statuses are pulled from |
jrodewig
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
The get SLM status API will only return one of three statuses: `RUNNING`, `STOPPING`, or `STOPPED`. This corrects the docs to remove the `STARTED` status and document the `RUNNING` status. Co-authored-by: James Rodewig <[email protected]> Co-authored-by: Stef Nestor <[email protected]>
The get SLM status API will only return one of three statuses: `RUNNING`, `STOPPING`, or `STOPPED`. This corrects the docs to remove the `STARTED` status and document the `RUNNING` status. Co-authored-by: James Rodewig <[email protected]> Co-authored-by: Stef Nestor <[email protected]>
The get SLM status API will only return one of three statuses:
RUNNING,STOPPING, orSTOPPED.This corrects the docs to remove the
STARTEDstatus and document theRUNNINGstatus.