You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Parses XLSX files into ElasticSearch using column titles from specified row combined with data in columns on each row. For use with Kibana or other visualization applications, example result using a transaction log in excel format [image](https://raw.githubusercontent.com/codingchili/parser-banktrans-es/master/sample-redacted.png). The application comes with a web-interface to simplify uploading.
3
+
Parses XLSX files into ElasticSearch using column titles from a specified row combined with data in columns on each row. May be used with Kibana or other visualization applications, example result using a transaction log in excel format [image](https://raw.githubusercontent.com/codingchili/parser-banktrans-es/master/sample-redacted.png). The application comes with a web-interface to simplify uploading.
@@ -10,26 +10,30 @@ Parses XLSX files into ElasticSearch using column titles from specified row comb
10
10
- csv files can be converted to .xlsx using office and then imported.
11
11
- clear the index before importing, or append to existing index.
12
12
- basic authentication when uploading from the application to elasticsearch.
13
+
- support for importing to TLS enabled elasticsearch servers.
14
+
- supports concurrent parsing of excel files and importing for better performance.
15
+
- parses the whole file before starting the import - to make sure your index is not left in an undesired state.
13
16
14
17
## Prerequisites
15
18
The application requires ElasticSearch as its output.
16
19
17
20
1. ElasticSearch (version 5+/6+) should not require any additional configuration or installation, just download and run from [Elastic](https://www.elastic.co/products).
18
21
19
-
2.Download the latest release of excelastic-1.2.6.jar and the configuration.json (optional) file from [GitHub releases](https://github.com/codingchili/parser-excel-elasticsearch/releases).
22
+
2.Grab the latest .jar file from [releases](https://github.com/codingchili/parser-excel-elasticsearch/releases).
20
23
21
-
Tested with ElasticSearch 5.6.2 and 6.1.0.
24
+
Tested with ElasticSearch 5.6.2 and 6.2.3.
22
25
23
26
## Running
27
+
24
28
Running the application, filename and index is required, to import from the terminal run:
0 commit comments