ElasticSearch CSV Exporter
Missing CSV export feature for Elasticsearch on Kibana Dashboard. Start exporting search results as CSV file from Kibana Discover.
Hvad er ElasticSearch CSV Exporter?
ElasticSearch CSV Exporter er en Chrome-udvidelse udviklet af MineWhat,Inc, og dens hovedfunktion er "Missing CSV export feature for Elasticsearch on Kibana Dashboard. Start exporting search results as CSV file from Kibana Discover.".
Udvidelsesskærmbilleder
Download ElasticSearch CSV Exporter-udvidelses-CRX-fil
Download ElasticSearch CSV Exporter-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
Missing CSV export feature for Elasticsearch on Kibana Dashboard. Install this chrome plugin, go to the Kibana Discover tab and start exporting search results as CSV files. https://github.com/minewhat/es-csv-exporter Tested in Kibana 4.4.2 + ElasticSearch 2.2.x Tested in Kibana 4.3.3 + ElasticSearch 2.2.x Tested in Kibana 4.3.1 + ElasticSearch 2.1.x Tested in Kibana 4.1.x + ElasticSearch 1.7.x
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | kjkjddcjojneaeeppobfolgojhohbpjn |
Officiel URL | https://chrome.google.com/webstore/detail/elasticsearch-csv-exporte/kjkjddcjojneaeeppobfolgojhohbpjn |
Beskrivelse | Missing CSV export feature for Elasticsearch on Kibana Dashboard. Start exporting search results as CSV file from Kibana Discover. |
Filstørrelse | 16.92 KB |
Antal Installationer | 4,000 |
Nuværende Version | 0.4 |
Senest Opdateret | 2016-03-25 |
Udgivelsesdato | 2016-03-25 |
Bedømmelse | 3.87/5 Samlet 23 Bedømmelser |
Udvikler | MineWhat,Inc |
Betalingsmetode | free |
Hjælpeside-URL | https://github.com/minewhat/es-csv-exporter |
Understøttede Sprog | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "ElasticSearch CSV Exporter", "version": "0.4", "manifest_version": 2, "description": "Missing CSV export feature for Elasticsearch on Kibana Dashboard. Start exporting search results as CSV file from Kibana Discover.", "homepage_url": "http:\/\/minewhat.com\/blog", "icons": { "16": "icons\/icon16.png", "48": "icons\/icon48.png", "128": "icons\/icon128.png" }, "default_locale": "en", "background": { "page": "src\/bg\/background.html", "persistent": true }, "browser_action": { "default_icon": "icons\/icon19.png", "default_title": "browser action demo", "default_popup": "src\/browser_action\/browser_action.html" }, "permissions": [ "clipboardWrite", "downloads", "tabs", "http:\/\/*\/*", "https:\/\/*\/*" ], "content_scripts": [ { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "css": [ "src\/inject\/inject.css" ] }, { "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ], "js": [ "src\/inject\/inject.js", "src\/inject\/lib\/arrive.js" ] } ] } |