Is it possible to create custom timestamp index in elastic search?
While reading through elastic search, I find that elastic search automatically creates data insert timestamp if we enable @timestamp in mapping section. elastic blog reference
Now lets say I'm trying to create custom timeseries index on another index say promiseDate, so while querying on timeslice like last 10 mins or last 1 hour - does elasic search tries to scan each promiseDate present in the store for all the documents or its trying pull only those indexes lying on that specific timeseries?
Additionally,
- Can this promiseDate be set as TimeSeriesFilter in Kibana?