Kibana Plugin Development (React)

Hi, I'm looking for some documentation on how I can develop my own plugin. I'd like to add a react component to my Kibana dashboard , specifically a dropdown with some drill-down capabilities.

Have you tried looking at :slight_smile:https://www.elastic.co/guide/en/kibana/current/plugin-development.html

Its the guide to plugin development. It may help you get started.

Cheers
Rashmi

I’ve gone through that already, I’m looking for something with more details. For example, details on how my plugin can access data or even change data.

how my plugin can access data or even change data

There is special API provided at server object in route handlers: https://www.elastic.co/guide/en/kibana/current/development-elasticsearch.html. It uses elasticsearch.js inside

Also you can try to use https://github.com/elastic/kibana/tree/master/packages/kbn-plugin-generator

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.