Export to csv/excel from kibana
Asked Answered
M

4

74

I am building a proof of concept using Elasticsearch Logstash and Kibana for one of my projects. I have the dashboard with the graphs working without any issue. One of the requirements for my project is the ability to download the file(csv/excel). In kibana the only option i saw for downloading the file is by clicking on edit button on the visualization created. Is it possible to add a link on the dashboard that would allow users to download the file without going into the edit mode. And secondly I would like to disable/hide the edit mode for anyone other than me who views the dashboard. Thanks

Modal answered 14/1, 2016 at 14:33 Comment(2)
This might be useful.Steepen
how can I add export CSV functionality in my custom pluginOliy
M
9

I totally missed the export button at the bottom of each visualization. As for read only access...Shield from Elasticsearch might be worth exploring.

Modal answered 14/1, 2016 at 20:20 Comment(1)
ya..i think kibana has the worst UX ever...i am spending hours on finding a way and I am thinking of wiriting a script to scroll ES and download it my selfCorse
P
48

FYI : How to download data in CSV from Kibana:

In Kibana--> 1. Go to 'Discover' in left side

  1. Select Index Field (based on your dashboard data) (*** In case if you are not sure which index to select-->go to management tab-->Saved Objects-->Dashboard-->select dashboard name-->scroll down to JSON-->you will see the Index name )

  2. left side you see all the variables available in the data-->click over the variable name that you want to have in csv-->click add-->this variable will be added on the right side of the columns avaliable

  3. Top right section of the kibana-->there is the time filter-->click -->select the duration for which you want the csv

  4. Top upper right -->Reporting-->save this time/variable selection with a new report-->click generate CSV

  5. Go to 'Management' in left side--> 'Reporting'-->download your csv

Pretend answered 12/6, 2018 at 14:35 Comment(6)
@kleptog X-Pack is not required for this.Masqat
"From version 5.0 onward, Reporting is part of X-Pack. For more information, see Reporting from Kibana in the X-Pack Reference." see hereAntimalarial
Reporting also needs to be enabled, see here: elastic.co/guide/en/kibana/6.5/reporting-settings-kb.htmlCoincidental
In Kibana 7.1 I do not see any "Reporting" link and not able to find any download option. Can anyone help with this? I am using AWS ElasticsearchGraybill
@Graybill AWS ES is operating in "Open Source" tier of elastic subscription model. CSV reports are in Basic (free) tier. Thus, it's not enabled. elastic.co/subscriptionsElaina
how to implement this export functionality using apiOliy
K
47

To export data to csv/excel from Kibana follow the following steps:-

  1. Click on Visualize Tab & select a visualization (if created). If not created create a visualziation.

  2. Click on caret symbol (^) which is present at the bottom of the visualization.

  3. Then you will get an option of Export:Raw Formatted as the bottom of the page.

Please find below attached image showing Export option after clicking on caret symbol.

Please find below attached image showing Export option after clicking on caret symbol.

Karenkarena answered 15/1, 2016 at 5:17 Comment(6)
Do we option to export all search result data?Disavow
It will export all the search result data. If you download by clicking on Raw or Formatted, then all the search result will be downloaded.Karenkarena
I tried it but it's not downloading all the data. I am debugging it more else I will asked separate question :) Thanks for your reply.Disavow
Added new questionDisavow
I don't think its possible to export to csv/excel (or other form of tabular structure) even with Kibana Visualize and Dashboard.Verina
This approach allows me to save just aggregated data (e.g. count of matched records).Farber
M
20

In Kibana 6.5, you can generate CSV under the Share Tab -> CSV Reports.

The request will be queued. Once the CSV is generated, it will be available for download under Management -> Reporting

Musty answered 23/12, 2019 at 16:56 Comment(3)
Do I need to install X-Pack to do that?Witness
I dont believe soMusty
@OksanaB yes you need X-Pack. It's still free though, but it's not available in non-elastic-hosted solutions, e.g. AWS.Elaina
M
9

I totally missed the export button at the bottom of each visualization. As for read only access...Shield from Elasticsearch might be worth exploring.

Modal answered 14/1, 2016 at 20:20 Comment(1)
ya..i think kibana has the worst UX ever...i am spending hours on finding a way and I am thinking of wiriting a script to scroll ES and download it my selfCorse

© 2022 - 2024 — McMap. All rights reserved.