Skip to content

Commit

Permalink
Console Autocomplete Overrides for 7.11 (#88937)
Browse files Browse the repository at this point in the history
* First half of overrides completed and thoroughly tested.

* Added ml upgrade job snapshot overrides.

* Added overrides for searchable snapshots and also fixed the EQL wait for completion parameter to default to false per the docs.

* Added grant api key API overrides and tested them.

Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
  • Loading branch information
John Dorlus and kibanamachine committed Jan 21, 2021
1 parent 2d86004 commit b0efd68
Show file tree
Hide file tree
Showing 6 changed files with 68 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"eql.search": {
"data_autocomplete_rules": {
"event_category_field": "",
"fetch_size": 1000,
"filter": "",
"keep_alive": "",
"keep_on_completion": true,
"query": "",
"size": 10,
"tiebreaker_field": "",
"timestamp_field": "",
"wait_for_completion_timeout": ""
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"ml.estimate_model_memory": {
"data_autocomplete_rules": {
"analysis_config": {},
"max_bucket_cardinality": {},
"overall_cardinality": {}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"ml.update_data_frame_analytics": {
"data_autocomplete_rules": {
"allow_lazy_start": false,
"description": "",
"max_num_threads": 1,
"model_memory_limit": "1gb"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"ml.upgrade_job_snapshot": {
"url_params": {
"job_id": "",
"snapshot_id": "",
"timeout": "",
"wait_for_completion_timeout": "__flag__"
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"searchable_snapshots.mount": {
"data_autocomplete_rules": {
"wait_for_completion": false,
"master_timeout": ""
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
{
"security.grant_api_key": {
"data_autocomplete_rules": {
"access_token": "",
"api_key": {
"expiration": "",
"name": "",
"role_descriptors": {}
},
"grant_type": "access_token",
"password": "",
"username": ""
}
}
}

0 comments on commit b0efd68

Please sign in to comment.