* Fix validations not handling extra things like params or lang
* Add translations
Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com>
(cherry picked from commit
|
||
---|---|---|
.. | ||
apidoc_scripts | ||
schemas | ||
alerting.ts | ||
annotations.ts | ||
anomaly_detectors.ts | ||
apidoc.json | ||
calendars.ts | ||
data_frame_analytics.ts | ||
data_visualizer.ts | ||
datafeeds.ts | ||
fields_service.ts | ||
filters.ts | ||
indices.ts | ||
job_audit_messages.ts | ||
job_service.ts | ||
job_validation.ts | ||
modules.ts | ||
README.md | ||
results_service.ts | ||
saved_objects.ts | ||
system.ts | ||
trained_models.ts |
ML Kibana API routes
This folder contains ML API routes in Kibana.
Each route handler requires apiDoc annotations in order to generate documentation. The apidoc-markdown package is also required in order to generate the markdown.
There are custom parser and worker (x-pack/plugins/ml/server/routes/apidoc_scripts
) to process api schemas for each documentation entry. It's written with typescript so make sure all the scripts in the folder are compiled before executing apidoc
command.
Make sure you have run yarn kbn bootstrap
to get all requires dev dependencies. Then execute the following command from the ml plugin folder:
yarn run apiDocs
It compiles all the required scripts and generates the documentation both in HTML and Markdown formats.
It will create a new directory routes_doc
(next to the routes
folder) which contains the documentation in HTML format
as well as ML_API.md
file.