mirror of
https://github.com/elastic/kibana.git
synced 2025-06-28 11:05:39 -04:00
Clean up the developer guide (#71631)
* rename float to discrete * use same section title level on all source files * Elasticsearch => {es} Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
This commit is contained in:
parent
35e1dd6522
commit
a20469f038
34 changed files with 338 additions and 336 deletions
|
@ -1,16 +1,16 @@
|
|||
[[add-data-tutorials]]
|
||||
=== Add data tutorials
|
||||
== Add data tutorials
|
||||
|
||||
`Add Data` in the {kib} Home application contains tutorials for setting up data flows in the Elastic stack.
|
||||
|
||||
Each tutorial contains three sets of instructions:
|
||||
|
||||
* `On Premise.` Set up a data flow when both {kib} and Elasticsearch are running on premise.
|
||||
* `On Premise Elastic Cloud.` Set up a data flow when {kib} is running on premise and Elasticsearch is running on Elastic Cloud.
|
||||
* `Elastic Cloud.` Set up a data flow when both {kib} and Elasticsearch are running on Elastic Cloud.
|
||||
* `On Premise.` Set up a data flow when both {kib} and {es} are running on premise.
|
||||
* `On Premise Elastic Cloud.` Set up a data flow when {kib} is running on premise and {es} is running on Elastic Cloud.
|
||||
* `Elastic Cloud.` Set up a data flow when both {kib} and {es} are running on Elastic Cloud.
|
||||
|
||||
[float]
|
||||
==== Creating a new tutorial
|
||||
[discrete]
|
||||
=== Creating a new tutorial
|
||||
1. Create a new directory in the link:https://github.com/elastic/kibana/tree/master/src/plugins/home/server/tutorials[tutorials directory].
|
||||
2. In the new directory, create a file called `index.ts` that exports a function.
|
||||
The function must return a function object that conforms to the `TutorialSchema` interface link:{kib-repo}tree/{branch}/src/plugins/home/server/services/tutorials/lib/tutorial_schema.ts[tutorial schema].
|
||||
|
@ -23,15 +23,15 @@ The function must return a function object that conforms to the `TutorialSchema`
|
|||
If you are creating a new plugin and the tutorial is only related to that plugin, you can also place the `TutorialSchema` object into your plugin folder. Add `home` to the `requiredPlugins` list in your `kibana.json` file.
|
||||
Then register the tutorial object by calling `home.tutorials.registerTutorial(tutorialObject)` in the `setup` lifecycle of your server plugin.
|
||||
|
||||
[float]
|
||||
===== Variables
|
||||
[discrete]
|
||||
==== Variables
|
||||
String values can contain variables that are substituted when rendered. Variables are specified by `{}`.
|
||||
For example: `{config.docs.version}` is rendered as `6.2` when running the tutorial in {kib} 6.2.
|
||||
|
||||
link:{kib-repo}tree/{branch}/src/legacy/core_plugins/kibana/public/home/np_ready/components/tutorial/replace_template_strings.js#L23[Provided variables]
|
||||
|
||||
[float]
|
||||
===== Markdown
|
||||
[discrete]
|
||||
==== Markdown
|
||||
String values can contain limited Markdown syntax.
|
||||
|
||||
link:{kib-repo}tree/{branch}/src/legacy/core_plugins/kibana/public/home/components/tutorial/content.js#L8[Enabled Markdown grammars]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue