mirror of
https://github.com/elastic/kibana.git
synced 2025-04-25 18:27:59 -04:00
41 lines
1.8 KiB
Text
41 lines
1.8 KiB
Text
[[development-plugin-resources]]
|
|
=== Plugin Resources
|
|
|
|
Here are some resources that will be helpful for getting started with plugin development
|
|
|
|
[float]
|
|
==== Our IRC channel
|
|
Many Kibana developers hang out on `irc.freenode.net` in the `#kibana` channel. We *want* to help you with plugin development. Even more than that, we *want your help* in understanding your plugin goals so we can build a great plugin system for you! If you've never used IRC, welcome to the fun. You can get started with the http://webchat.freenode.net/?channels=kibana[Freenode Web Client].
|
|
|
|
[float]
|
|
==== Some light reading
|
|
- Our {repo}blob/master/CONTRIBUTING.md[contributing guide] can help you get a development environment going
|
|
- Tim Roes' excellent blog series https://www.timroes.de/2016/02/21/writing-kibana-plugins-custom-applications/[Writing Kibana Plugins]
|
|
|
|
[float]
|
|
==== Videos
|
|
- https://www.elastic.co/elasticon/2015/sf/contributors-guide-to-the-kibana-galaxy[Contributors Guide to the Kibana Galaxy]
|
|
- https://www.elastic.co/elasticon/conf/2016/sf/how-to-build-your-own-kibana-plugins[Kibana Plugin Dev - Elasticon 2016]
|
|
|
|
[float]
|
|
==== Plugin Generator
|
|
|
|
Check out the https://github.com/elastic/template-kibana-plugin/[plugin generator] to kick-start your plugin.
|
|
|
|
[float]
|
|
==== Directory structure for plugins
|
|
|
|
The Kibana directory must be named `kibana`, and your plugin directory must be located within the sibling `kibana-extra` folder, for example:
|
|
|
|
["source","shell"]
|
|
-----------
|
|
.
|
|
├── kibana
|
|
├── kibana-extra/foo-plugin
|
|
└── kibana-extra/bar-plugin
|
|
-----------
|
|
|
|
[float]
|
|
==== References in the code
|
|
- {repo}blob/{branch}/src/server/plugins/plugin.js[Plugin class]: What options does the `kibana.Plugin` class accept?
|
|
- <<development-uiexports>>: What type of exports are available?
|