Debugging missing plugins after updating from 7.6.2 to 7.9.2

All 3 plugins add custom functionality to Kibana via visTypes extension point

The problem that visualization plugin migrated to the new Kibana platform in v7.8.0 move visualizations plugin to new platform by ppisljar · Pull Request #60403 · elastic/kibana · GitHub and doesn't use uiExports.visTypes anymore.

You can use Kibana with version below v7.8 or adjust plugins code with one of 2 options:

in hacks.js
import { npSetup } from 'ui/new_platform';
npSetup.plugins. visualizations.createBaseVisualization(...)

Probably it's better to migrate to KP because we removed legacy platform plugins support in v7.10

2 Likes