We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44b87e4 commit c747064Copy full SHA for c747064
lib/logstash/inputs/file.rb
@@ -10,9 +10,12 @@
10
# similar to `tail -0F` but optionally reading them from the
11
# beginning.
12
#
13
-# By default, each event is assumed to be one line. If you would like
14
-# to join multiple log lines into one event, you'll want to use the
15
-# multiline codec or filter.
+# By default, each event is assumed to be one line and a line is
+# taken to be the text before a newline character.
+# Normally, logging will add a newline to the end of each line written.
16
+
17
+# If you would like to join multiple log lines into one event,
18
+# you'll want to use the multiline codec or filter.
19
20
# The plugin aims to track changing files and emit new content as it's
21
# appended to each file. It's not well-suited for reading a file from
0 commit comments