How to add additional timestamp field in an index

pipeline file

date {
match =>["[event][time]","YYYY-MM-dd HH:mm:ss.SSS"]
target => "time"
}

however when i do
GET my_index/_mapping
there is no time field , my objective is two have two field one is @timestamp default one and second one is my field time .

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