-
Notifications
You must be signed in to change notification settings - Fork 24.9k
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
[DOCS] Document EQL search REST API #52384
Conversation
Pinging @elastic/es-search (:Search/EQL) |
Pinging @elastic/es-docs (>docs) |
@elasticmachine update branch |
@elastic/es-ql |
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. Left two minor comments.
Comma-separated list of index names or <<indices-aliases,index aliases>> used to | ||
limit the request. Accepts wildcard expressions. | ||
+ | ||
To search all indices, use `_all`. |
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.
I believe it works with *
as well: localhost:9200/*/_eql/search
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.
Addressed this with d09b286. Thanks!
Reserved for future use. | ||
|
||
`size`:: | ||
(Optional, integer) |
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.
We say it's integer, but we seem to allow floating point numbers.
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.
Added float with d09b286. Thanks!
Thank you @astefan. |
Add API reference documentation for the EQL search API added with #49768.
For now, this PR only documents parameters expected for use with milestone 1 of #49581. Parameters used for joins are marked as
Reserved for future use
.Remaining parameters and response will be documented alongside future development.