UNIX Epoch Timestamp not supported from drupal - Kibana

My timestamp got from my application (Drupal) looks like this 1489035816

Which is not able to connect with Kibana.

What I can I do to solve this ?

Can we convert UNIX Epoch timestamp to any other format supported by Kibana with KIbana or ES ?

The timestamps get saved in unix timestamp format, but with miliseconds instead of seconds. This can be done at ingest in ES or you can just create a scripted fieldof date type in Kibana that multiplies the value in your timestamp field with 1000.

doc['timestamp'].value * 1000

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