-
Notifications
You must be signed in to change notification settings - Fork 8.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_unused_config_keys causes unknown configuration key error for arrays in plugin #58559
Comments
Pinging @elastic/kibana-platform (Team:Platform) |
Fixed on 7.7 by #56105 |
@pgayvallet should we port to 7.6? |
7.6: #58998 |
Closing as resolved on 7.6+ |
i am installing sense from kibana root folder with below command
i get below error. i am using 'kibana-7.8.0-windows-x86_64' log [20:13:14.866] [info][plugins-service] Plugin "ingestManager" is disabled. FATAL Error: Unknown configuration key(s): "install". Check for spelling errors and ensure that expected plugins are installed. |
.\bin\kibana-plugin.bat install elastic/sense i tried this script as well, which gives different error shown above. |
Kibana version: 7.6.0
Elasticsearch version: 7.6.0
Server OS version: Debian 10
Browser version: Chrome (N/A, since Kibana doesn't start)
Browser OS version: Windows
Original install method (e.g. download page, yum, from source, etc.): cloned source from v7.6.0 tag on github.
Describe the bug: If you include a plugin parameter in kibana.yml/kibana.dev.yml which is an array, get_unused_config_keys will throw a parameter validation error and Kibana will stop.
Steps to reproduce:
Run in dev mode.
Kibana will halt with the following error:
Expected behavior:
Screenshots (if relevant):
Errors in browser console (if relevant): N/A
Provide logs and/or server output (if relevant):
Any additional context:
It appears get_unused_config_keys.ts stores the array keys as:
so that the call to lodash.difference does not correctly validate the existence of the keys.
The text was updated successfully, but these errors were encountered: