Skip to content

Commit

Permalink
fix docs build (#113948)
Browse files Browse the repository at this point in the history
  • Loading branch information
stacey-gammon authored Oct 5, 2021
1 parent 226b8e8 commit e9fc519
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions dev_docs/key_concepts/kibana_platform_plugin_intro.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@ already existing applications. Did you know that almost everything you see in th
Kibana UI is built inside a plugin? If you removed all plugins from Kibana, you'd be left with an empty navigation menu, and a set of
developer tools. The Kibana platform is a blank canvas, just waiting for a developer to come along and create something!

![Kibana personas](assets/kibana_platform_plugin_end_user.png)
![Kibana personas](../assets/kibana_platform_plugin_end_user.png)

## 1,000 foot view

At a super high-level, Kibana is composed of **plugins**, **core**, and **Kibana packages**.

![Kibana 1000 ft arch](assets/1000_ft_arch.png)
![Kibana 1000 ft arch](../assets/1000_ft_arch.png)

**Plugins** provide the majority of all functionality in Kibana. All applications and UIs are defined here.

Expand Down Expand Up @@ -51,7 +51,7 @@ We try to put only the most stable and fundamental code into `Core`, while optio

Today it looks something like this.

![Core vs platform plugins vs plugins](assets/platform_plugins_core.png)
![Core vs platform plugins vs plugins](../assets/platform_plugins_core.png)

"Platform plugins" provide core-like functionality, just outside of core, and their public APIs tend to be more volatile. Other plugins may still expose shared services, but they are intended only for usage by a small subset of specific plugins, and may not be generic or "platform-like".

Expand Down Expand Up @@ -91,7 +91,7 @@ A plugin may register many applications, or none.

Applications are top level pages in the Kibana UI. Dashboard, Canvas, Maps, App Search, etc, are all examples of applications:

![applications in kibana](./assets/applications.png)
![applications in kibana](../assets/applications.png)

A plugin can register an application by
adding it to core's application <DocLink id="kibPlatformIntro" section="registry" text="registry"/>.
Expand Down

0 comments on commit e9fc519

Please sign in to comment.