Hi @cadrija
I am using 7.17.6, Basic License
In short the samples you provided just loaded up for me, no extra work. etc. I simply used all the default and clicked Import..
I wonder if you have some corrupt characters, or something else in the files...These samples loaded fine for me....
A little what I noticed
First your Sample1 and 2 only partially meet the criteria
- Delimited text files, such as CSV and TSV
- Newline-delimited JSON
- Log files with a common format for the timestamp
Sample 1 and Sample 2
Have a common time format but are not CSV, TSV delimited or ndjson the the automatic parsing will be minimal in other words it will not parse "the message" portion
Both of these imported the first time for me. ...
I just Clicked Through and and the Log Was parsed and Loaded
BUT it is not going to parse the whole log message because it is CSV, TSV or ndjson it is Unstructured Text
You will need to build your own custom parsing to parse these logs if you want additional parsing
The results look like
GET discuss-sample-1/_search
...
{
"_index" : "discuss-sample-1",
"_type" : "_doc",
"_id" : "xQ6JhIMB2qNNMYeXRN1I",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2022-09-21T04:39:42.473-07:00",
"loglevel" : "ERROR",
"message" : "2022-09-21T04:39:42,473 [main] ERROR: Test log: Inside LoanIQLoggingManager"
}
},
{
"_index" : "discuss-sample-1",
"_type" : "_doc",
"_id" : "xg6JhIMB2qNNMYeXRN1I",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2022-09-21T04:39:44.685-07:00",
"loglevel" : "INFO",
"message" : "2022-09-21T04:39:44,685 [main] INFO: Started loading datatables"
}
}, {
"_index" : "discuss-sample-1",
"_type" : "_doc",
"_id" : "xQ6JhIMB2qNNMYeXRN1I",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2022-09-21T04:39:42.473-07:00",
"loglevel" : "ERROR",
"message" : "2022-09-21T04:39:42,473 [main] ERROR: Test log: Inside LoanIQLoggingManager"
}
},
{
"_index" : "discuss-sample-1",
"_type" : "_doc",
"_id" : "xg6JhIMB2qNNMYeXRN1I",
"_score" : 1.0,
"_source" : {
"@timestamp" : "2022-09-21T04:39:44.685-07:00",
"loglevel" : "INFO",
"message" : "2022-09-21T04:39:44,685 [main] INFO: Started loading datatables"
}
},
In Discover
This is Sample2 in
Sample 3 you did not provide the actual CSV txt ... I would expect that to load as well..