You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pipeline/parsers/json.md
+4-5Lines changed: 4 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -1,8 +1,8 @@
1
1
# JSON
2
2
3
-
The JSON parser is the simplest option: if the original log source is a JSON map string, it will take its structure and convert it directly to the internal binary representation.
3
+
The _JSON_ parser transforms JSON logs by converting them to internal binary representations.
4
4
5
-
A simple configuration that can be found in the default parsers configuration file, is the entry to parse Docker log files \(when the tail input plugin is used\):
5
+
For example, the default parsers configuration file includes a parser for parsing Docker logs (when the Tail input plugin is used):
6
6
7
7
```python
8
8
[PARSER]
@@ -12,7 +12,7 @@ A simple configuration that can be found in the default parsers configuration fi
12
12
Time_Format %Y-%m-%dT%H:%M:%S %z
13
13
```
14
14
15
-
The following log entry is a valid content for the parser defined above:
15
+
The following log entry is valid content for the previously defined parser:
0 commit comments