Indexation problem

hello
i am facing a big problem
in fact
i am filtring logs and index them in elasticsearch (for each log they have the same index 7 index)
and then i visualize them in angular

the problem when i add another log after parsing it with my config files and put it in the same index

when i want to visualize it show me both logs
and i don"t know which are the information that refers to the first log
and which for the second
someone help me?
i think it is a mapping problem

i use this service on angular

showDetailsconversionext(){
this.es.getAllDocuments('itk_conversion', 'doc')
.then(response => {
console.log(response);
this.conversionext = response.hits.hits;
console.log(this.conversionext);
this.clickedconv = true;
}, error => {
console.error(error);
}).then(() => {
console.log('Show Customer Completed!');
});
}

someone help me?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.