How to pass data to custom plugin in Kibana

I created a new plugin. on a button click, I want to redirect to the plugin page, I did that by doing the following:

const urlToplugin= "/app/myScheduler";
window.location.href = urlToplugin

, but I want to pass some data to the plugin. How can I do that?

A common way to do it is by storing the data in browser storage.

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