File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
33There are cases where the log messages being parsed contain encoded data. A typical
44use case can be found in containerized environments with Docker. Docker logs its
5- data in JSON format which uses escaped strings.
5+ data in JSON format, which uses escaped strings.
66
77Consider the following message generated by the application:
88
@@ -27,7 +27,7 @@ definition can optionally set one or more decoders. There are two types of decod
2727- ` Decode_Field ` : If the content can be decoded in a structured message, append
2828 the structured message (keys and values) to the original log message.
2929- ` Decode_Field_As ` : Any decoded content (unstructured or structured) will be
30- replaced in the same key/value, no extra keys are added.
30+ replaced in the same key/value, and no extra keys are added.
3131
3232Our pre-defined Docker parser has the following definition:
3333
@@ -45,7 +45,7 @@ Our pre-defined Docker parser has the following definition:
4545
4646Each line in the parser with a key ` Decode_Field ` instructs the parser to apply
4747a specific decoder on a given field. Optionally, it offers the option to take an
48- extra action if the decoder can 't succeed.
48+ extra action if the decoder doesn 't succeed.
4949
5050### Decoder options
5151
You can’t perform that action at this time.
0 commit comments