Skip to content

Commit 620e2b3

Browse files
committed
Add unixtime_millis, unixtime_micros and unixtime_nanos
This commit adds the options introduced by fluent/fluentd#3220. Signed-off-by: abicky <[email protected]>
1 parent 9cd7d68 commit 620e2b3

File tree

1 file changed

+16
-4
lines changed

1 file changed

+16
-4
lines changed

configuration/inject-section.md

+16-4
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,24 @@ Injected Record:
6767
type
6868

6969
* Default: `float`
70-
* Available values: `float`, `unixtime`, `string`
71-
* `float`: seconds from Epoch + nano seconds \(e.g.
70+
* Available values:
71+
* `float`: seconds from Epoch + microseconds \(e.g.
7272

73-
1510544836.154709804\)
73+
1510544836.154709\)
74+
75+
* `unixtime`: seconds from Epoch \(e.g. 1510544836\)
76+
* `unixtime_millis`: milliseconds from Epoch \(e.g.
77+
78+
1510544836154\)
79+
80+
* `unixtime_micros`: microseconds from Epoch \(e.g.
81+
82+
1510544836154709\)
83+
84+
* `unixtime_nanos`: nanoseconds from Epoch \(e.g.
85+
86+
1510544836154709804\)
7487

75-
* `unixtime`: seconds from Epoch \(e.g. 1510544815\)
7688
* `string`: use format specified by `time_format`, local time or time
7789

7890
zone

0 commit comments

Comments
 (0)