Skip to content

Commit d1b77d1

Browse files
authored
pipeline: parsers: json: fix typos (#704)
Signed-off-by: Diogo Recharte <[email protected]>
1 parent 11d13a9 commit d1b77d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pipeline/parsers/json.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# JSON
22

3-
The JSON parser is the simplest option: if the original log source is a JSON map string, it will take it structure and convert it directly to the internal binary representation.
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.
44

55
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\):
66

@@ -18,7 +18,7 @@ The following log entry is a valid content for the parser defined above:
1818
{"key1": 12345, "key2": "abc", "time": "2006-07-28T13:22:04Z"}
1919
```
2020

21-
After processing, it internal representation will be:
21+
After processing, its internal representation will be:
2222

2323
```text
2424
[1154103724, {"key1"=>12345, "key2"=>"abc"}]

0 commit comments

Comments
 (0)