Skip to content

Commit

Permalink
Added overrides for EQL search API. (elastic#77418)
Browse files Browse the repository at this point in the history
* Added overrides for EQL search API.

* Fixed url params and also added some data autocompletions for simple body parameters.

* Added request body params.

Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
  • Loading branch information
John Dorlus and elasticmachine authored Sep 21, 2020
1 parent 973d3eb commit 26a71a4
Showing 1 changed file with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
"eql.search": {
"url_params": {
"allow_no_indices": { "__one_of": [true, false] },
"expand_wildcards": { "__one_of": ["all", "open", "closed", "hidden", "none"] },
"ignore_unavailable": { "__one_of": [true, false] } ,
"keep_alive": "5d",
"keep_on_completion": { "__one_of": [true, false] } ,
"wait_for_completion_timeout": 0
},
"data_autocomplete_rules": {
"case_sensitive": { "__one_of": [true, false] },
"fetch_size": 1000,
"query": "",
"event_category_field": "",
"tiebreaker_field": "",
"timestamp_field": "",
"filter": ""
},
"patterns": [
"{target}/_eql/search"
]

}
}

0 comments on commit 26a71a4

Please sign in to comment.