You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When trying to run kibana after installing the plugin it says:
log [14:33:37.108] [error][plugins-service] PluginDiscoveryError: Plugin manifest for "kbnNetwork" must contain an " owner" property, which includes a nested "name" property. (invalid-manifest....)
Hello,
When trying to run kibana after installing the plugin it says:
log [14:33:37.108] [error][plugins-service] PluginDiscoveryError: Plugin manifest for "kbnNetwork" must contain an " owner" property, which includes a nested "name" property. (invalid-manifest....)
Solution:
Added owner property to the kibana.json file:
{
"id": "kbnNetwork",
"version": "7.16.1",
"server": false,
"ui": true,
"requiredPlugins": [
"visualizations",
"data",
"inspector",
"kibanaLegacy"
],
"requiredBundles": [
"kibanaUtils",
"visDefaultEditor",
"share",
"charts"
],
"owner": {
"name": "dlumbrer",
"githubTeam": "dlumbrer"
}
}
The text was updated successfully, but these errors were encountered: