blob: a8f42b15fbd2dcabca3f3646b0d432d1e82f23e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
--[[
This Lua script is to override timestamp with integer/float epoch time.
https://github.com/fluent/fluent-bit/issues/662
sample input is
[XXXXX.XXXXX, {"KEY_OF_TIMESTAMP"=>1530239065.807368, "data"=>"sample"}]
expected output is
[1530239065.807368040, {"KEY_OF_TIMESTAMP"=>1530239065.807368, "data"=>"sample"}]
sample configuration:
[FILTER]
Name lua
Match *.*
script override_time.lua
call override_time
]]
function override_time(tag, timestamp, record)
-- modify KEY_OF_TIMESTAMP properly.
return 1, record["KEY_OF_TIMESTAMP"], record
end
|