Skip to content

Commit cd90884

Browse files
esmerelcnorris-cs
andauthored
Apply suggestions from code review
Co-authored-by: Craig Norris <[email protected]> Signed-off-by: esmerel <[email protected]>
1 parent ae9d5d4 commit cd90884

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pipeline/parsers/decoders.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
There are cases where the log messages being parsed contain encoded data. A typical
44
use 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

77
Consider 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

3232
Our pre-defined Docker parser has the following definition:
3333

@@ -45,7 +45,7 @@ Our pre-defined Docker parser has the following definition:
4545

4646
Each line in the parser with a key `Decode_Field` instructs the parser to apply
4747
a 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

0 commit comments

Comments
 (0)