LogParser: matching float unix epoch as timestamps?

Hi,

I have a log file with float unix epoch timestamps on the first col, like this:
1495583979.739334 111 222

I am trying to use logparser on this, using
%{NUMBER:timestamp:ts-epoch} %{NUMBER:aaa} %{NUMBER:bbb}
but it complains about expecting an int for timestamps.

Is there any way around this?

Thanks

The best I know involves truncating the timestamp to second precision, it is described on the open issue but here is the gist of it:

%{INTEGER:unixtime:ts-epoch}.%{INTEGER} ...