Hello droberts195,
Thank you for answering.
I am in version 7.4 for both Kibana and Elastisearch.
The new documents sent are not in CSV format; they are sent using the regular way of monitoring data, that I used before to implement the index (ajax call).
I don't have a lot of details in the error message:
{"ts":"15:48:10.819","ctx":"Action","action":"ctx.log","params":[" ctx.ajax.call error: ",0],"verb":"LOGMESS","parentId":279}
ts: '15:48:10.819'
ctx: 'Action'
action: 'ctx.log'
params:
[0]: ' ctx.ajax.call error: '
[1]: 0
verb: 'LOGMESS'
parentId: 279
And here is an example of document:
{
"_index" : "import",
"_type" : "_doc",
"_id" : "yqjRgHMBHmE512Ofb9cj",
"_score" : 1.0,
"_source" : {
"RPA" : "PSC_IMPAYES",
"dateStart" : "2020-02-06 15:08:44.354",
"dateStop" : "2020-02-06 15:10:36.762",
"duration" : "112",
"error" : "Step GLOBAL.scStep1_CollectDataScenario_Contact.stContactNavigateToConnaissanceClientInterlocuteur: Error, CONTACT.pConnaissanceInterlocuteur.execScript: Argument ou appel de procédure incorrect",
"scenario" : "Etape 1 : scStep1_CollectDataScenario",
"stopAuto" : "YES",
"user" : "A242135",
"version" : "1.0.1",
"volume" : 1
}
For the mapping:
{
"mapping": {
"_meta": {
"created_by": "ml-file-data-visualizer"
},
"properties": {
"RPA": {
"type": "keyword"
},
"anomalie": {
"type": "text",
"fields": {
"keyword": {
"type": "keyword",
"ignore_above": 256
}
}
},
"checkpoint": {
"type": "keyword"
},
"dateStart": {
"type": "date",
"format": "yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss.SS||yyyy-MM-dd HH:mm:ss.S"
},
"dateStop": {
"type": "date",
"format": "yyyy-MM-dd HH:mm:ss.SSS||yyyy-MM-dd HH:mm:ss.SS||yyyy-MM-dd HH:mm:ss.S"
},
"duration": {
"type": "keyword"
},
"error": {
"type": "text"
},
"scenario": {
"type": "text"
},
"script_source": {
"type": "text"
},
"stopAuto": {
"type": "keyword"
},
"stopUser": {
"type": "keyword"
},
"timeout": {
"type": "keyword"
},
"user": {
"type": "keyword"
},
"version": {
"type": "keyword"
},
"volume": {
"type": "long"
}
}
}
}