Kibana plugin 7.9.1 has the setup interface, what is in 7.5.1 can i use

In 7.9.1 version of kibana, plugin.ts file there is setup interface.
export class SoupLoginPlugin implements Plugin<SoupLoginPluginSetup, SoupLoginPluginStart> { public setup(core: CoreSetup, deps: {}) {} }

how can in use in 7.5.1. I didn't find any document.. :sob: I just want when the kibana home page loaded, the plugin can auto execution. Don't need to click the icon on nav. cos, I will redirect to other page in the plugin..

In 7.9.1 version of kibana, plugin.ts file there is setup interface

The plugin development tools should be available in the next 7.10.0 release https://github.com/elastic/kibana/pull/75019
And we are working on the docs: Write basic documentation for Kibana Development Platform · Issue #75786 · elastic/kibana · GitHub

how can in use in 7.5.1.

You should be able to use the legacy plugin system. I'm afraid there are not so many docs available but Writing Kibana Plugins – Custom applications » Tim Roes GitHub - elastic/kibana_sample_plugin: Sample plugin using kibana visualizations

1 Like

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