Can we create a webform kind in the kibana dashboard

Hi, Is there a way to create a html form kind with input tags and submit page in the kibana dashboard. Once the form is submitted, the data needs to be pushed to the index.

Hi @Lokesh_s,

Welcome to the community! There isn't a way to include a static HTML form in a Kibana dashboard to push data (only markdown which you would struggle to build a dynamic form with). You can add controls to the dashboard but those would filter the visible data in the dashboard components. If you want to include a form that pushes documents you could write a Kibana plugin to handle the form and indexing of documents.

Another option would be to create a vanilla web application to handle the pushing of data, and embed the Kibana dashboard in a web app alongside the form using an iframe. If you are interested in this option check out here in the documentation and also in this blog.

Hopefully one of those options will work for you.

3 Likes

Hi @carly.richmond : Thanks for reply,

Reg. your first paragraph reference :

"if you want to include a form that pushes documents you could write a Kibana plugin to handle the form and indexing of documents."

Can you share the reference link OR Any exact documentation steps OR any video link to refer.

Thanks in advance.

Sure! I would recommend having a look at the Kibana developer guide documentation:

Hope that helps!

1 Like

Thank you for reply Carly.

1 Like