-
Notifications
You must be signed in to change notification settings - Fork 8.2k
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
command line load dashboard #333
Comments
There is no way to load a dashboard from the command line, Kibana requires a modern browser environment |
That said, I think you can use something like the following (tested on Mac): open http://localhost:9200/_plugin/kibana/#/dashboard/elasticsearch/yourdashboardname It will open a browser and open the right dashboard. @oweng Is it what you are looking for? |
Thanks guys, I think what I am looking for is:
I know this is a strange request, I am doing this as we pop up new environments where I just change the hostnames being queried in the dashboad JSON file. Just looking to see if there is a way to have that dashboard get loaded instead of the default logstash one. We currently are using kibana3 pre2, as I am a little behind on getting things moved over. Thanks for your help. Geoff |
If I understand it, you only need to download the dashboard as a JSON file and reuse it when needed: curl -XPUT http://localhost:9200/kibana-int/dashboard/youdashboardname -d '{
// Your kibana dashboard here
}' |
Oh, Okay, I get it. That makes sense. Sometimes I like to make things Thanks for your help David! I really appreciate it. Geoff On Thu, Aug 8, 2013 at 2:14 PM, David Pilato notifications@github.comwrote:
|
Oh, I think I understand now. You can just replace dashboards/default.json with whatever dashboard schema you've exported |
Perfect! Sorry for all the confusion! This really helps. Geoff On Thu, Aug 8, 2013 at 3:56 PM, Rashid Khan notifications@github.comwrote:
|
I'm trying to do the same, but with --data-binary @dashboard.json, it doesn't seem to work. I've exported a working dashboard, so it's not a syntax issue. Any advice ? |
Have you tried this? This worked for me: curl -XPUT http://127.0.0.1:9200/kibana-int/dashboard/dashboard-name -d regards, Geoff On Mon, Jul 7, 2014 at 12:29 PM, Bastien Chong notifications@github.com
|
Doesn't seem to work, when I do a curl XGET, the format of a working dashboard compared to what I created is not the same. I see all return char are replaced by "" in a good dashboard. By exporting the dashboard, i could restore it by copying it to app/dashboards/, i'm not sure how to get the good json format to import it through curl and give a file as parameter. |
This works for me
Here is an example document:
|
Is it possible to query elasticsearch/kibana to check if it received any data in the past 5 mins? If so, can someone guide me through the query that i can do in bash? |
- load modules a *non* eager singletons to untangle circular references with Tribe nodes - do not load modules if under tribe "proxy" nodes. this is detected by the "tribe.name" settings key. Closes elastic#333
I'm french so sorry for the bad English. |
I am working where I am creating the json file having dashboard and visualization using some programs. so can any one please tell me how can I automate the json file directly into kibana without doing it manually. |
File recon step2
…HTML in reveal_image (elastic#333)
Hi,
I was wondering if there is a way to load a dashboard from the command line? Is there a URL that I could use with curl to do this?
Thank you,
Geoff
The text was updated successfully, but these errors were encountered: