json
The json
parser plugin parses JSON logs. One JSON map per line.
Parameters
See Parse Section Configurations.
json_parser
json_parser
type | default | available | version |
enum | oj | oj, yajl, json | 0.14.0 |
Sets the JSON parser. If you have a problem with the configured parser, check the other available parser types.
NOTE: If you want to enable json_parser oj
by default, The oj
gem must be installed separately. This is because oj
gem is not required from fluentd by default. If oj
gem is not installed, yajl
is used as a fallback.
Here is a simple comparison:
oj
: Faster json parseryajl
: Mainly for stream parsingjson
: Standard bundled library
stream_buffer_size
stream_buffer_size
type | default | version |
integer | 8192 | 1.0.0 |
Set the buffer size that Yajl will use when parsing streaming input.
See also: Method: Yajl::Parser#parse
time_type
time_type
json
parser changes the default value of time_type
to float
. If you want to parse string field, set time_type
and time_format
like this:
See also parse
Section article.
Example
This incoming event:
is parsed as:
If this article is incorrect or outdated, or omits critical information, please let us know. Fluentd is an open-source project under Cloud Native Computing Foundation (CNCF). All components are available under the Apache 2 License.
Last updated