Hello All,
I am new to elastic stack ecosystem, and recently I face an issue,
Inside Kibana I am using index pattern to retrieve documents from multiple Index, but I don't know how do remove those duplicate records from result set ( I am using _id as tracking field, within the same index it cannot be duplicate, but kibana index pattern can be grep multiple index )
or I should put every document into same index when I using logstash to push mysql record to elasticsearch cloud.
Following is the Output config in my logstash
elasticsearch {
hosts => ["http://elasticsearch-host:9200"]
user => "es-username"
password => "es-password"
index => "stock_action-%{+YYYY.MM.dd}"
document_type => "stock_action"
document_id => "%{action_id}"
}
Any suggestion?