-
Notifications
You must be signed in to change notification settings - Fork 892
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Rename] kbn-spec-to-console in packages directory to osd-spec-to-con…
…sole #37 (#57) * [Rename] kbn-spec-to-console in packages directory to osd-spec-to-console Signed-off-by: Mihir Soni <mihirsoni.123@gmail.com> * [Rename] in-corporate review comments Signed-off-by: Mihir Soni <mihirsoni.123@gmail.com>
- Loading branch information
Showing
16 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
\ mini utility to convert [OpenSearch's REST spec](https://github.com/elastic/elasticsearch/blob/master/rest-api-spec) to Console's (OpenSearch Dashboards) autocomplete format. | ||
|
||
|
||
It is used to semi-manually update Console's autocompletion rules. | ||
|
||
### Retrieving the spec | ||
|
||
If you don't have a copy of the OpenSearch repo on your machine, follow these steps to clone only the rest API specs | ||
|
||
``` | ||
mkdir opensearch-spec && cd opensearch-spec | ||
git init | ||
git remote add origin https://github.com/elastic/elasticsearch | ||
git config core.sparsecheckout true | ||
echo "rest-api-spec/src/main/resources/rest-api-spec/api/*\nx-pack/plugin/src/test/resources/rest-api-spec/api/*" > .git/info/sparse-checkout | ||
git pull --depth=1 origin master | ||
``` | ||
|
||
### Usage | ||
|
||
You need to run the command twice: once for the **OSS** specs and once for the **X-Pack** specs | ||
At the root of the OpenSearch Dashboards repository, run the following commands: | ||
|
||
```sh | ||
# OSS | ||
yarn spec_to_console -g "<OPENSEARCH-REPO-FOLDER>/rest-api-spec/src/main/resources/rest-api-spec/api/*" -d "src/plugins/console/server/lib/spec_definitions/json/generated" | ||
|
||
# X-pack | ||
yarn spec_to_console -g "<OPENSEARCH-REPO-FOLDER>/x-pack/plugin/src/test/resources/rest-api-spec/api/*" -d "x-pack/plugins/console_extensions/server/lib/spec_definitions/json/generated" | ||
``` | ||
|
||
### Information used in Console that is not available in the REST spec | ||
|
||
* Request bodies | ||
* Data fetched at runtime: indices, fields, snapshots, etc | ||
* Ad hoc additions |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.