Fluentd
Search…
1.0
Introduction
Overview
Installation
Configuration
Deployment
Container Deployment
Monitoring Fluentd
Input Plugins
Output Plugins
Filter Plugins
Parser Plugins
Formatter Plugins
out_file
json
ltsv
csv
msgpack
hash
single_value
stdout
tsv
Buffer Plugins
Storage Plugins
Service Discovery Plugins
Metrics Plugins
How-to Guides
Language Bindings
Plugin Development
Plugin Helper API
Troubleshooting Guide
Powered By
GitBook
json
The
json
formatter plugin format an event to JSON.
By default,
json
formatter result doesn't contain
tag
and
time
fields.
Parameters
​
Common Parameters
​
​
Format section configurations
​
add_newline
type
default
version
bool
true
0.14.12
Adds
\n
to the result.
newline
type
default
version
enum
lf (for non-Windows)
or
crlf (for Windows)
1.11.5
Specify newline characters.
Example
1
tag: app.event
2
time: 1362020400
3
record: {"host":"192.168.0.1","size":777,"method":"PUT"}
Copied!
This incoming event is formatted to:
1
{
"host"
:
"192.168.0.1"
,
"size"
:
777
,
"method"
:
"PUT"
}
Copied!
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.
Previous
out_file
Next
ltsv
Last modified
11mo ago
Copy link
Contents
Parameters
add_newline
newline
Example