-
Notifications
You must be signed in to change notification settings - Fork 72
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
Allow for custom kibana index #38
Comments
@shaunrampersad Thanks for bringing it up. In case you built a configurable solution for yourself, feel free to open a PR with it. |
@ruflin I've submitted a PR. Might not be the best solution but its what I've changed on my side to get it working |
@shaunrampersad Thanks. Looks like we have now two proposals for the same thing #40 We will have a look at both. |
@shaunrampersad @lmangani Thank you for submitting a PR to solve this issue. To fulfill all requests, I added support for command arguments to the load script: ./load.sh -url http://localhost:9200 -user admin -index .kenv1 Options: -h | -help Print the help menu. -l | -url Elasticseacrh URL. By default is http://localhost:9200. -u | -user Username to connect to Elasticsearch. By default no username is used. -i | -index Kibana index pattern where to save the dashboards, visualizations, index patterns. By default is .kibana. |
Here is the related pull request: #42 |
Fixed by #42. |
Hello Guys, //kibana.yml //index.js We tried to test different scenario by manipulating on those two points. Are we doing it right? Thanks in advance. :) |
@arnelcapendit For questions please use https://discuss.elastic.co/c/beats |
Hi
By default the load.sh will upload dashboards to http://localhost:9200/.kibana.
In the case of kibana installations which use custom indices, it might be worthwhile making the index a variable within the script so that the dashboard can be uploaded to multiple kibana installs.
E.G:
./load.sh http://localhost:9200 .kibana_env1
./load.sh http://localhost:9200 .kibana_env2
Its not a major issue but more a nice to have. For now I'm editing the load.sh and replacing .kibana with other names and then loading.
Thanks
shaun
The text was updated successfully, but these errors were encountered: