Agreed B. Quoting the Splunk Reference URL, https://docs.splunk.com/Documentation/SplunkCloud/8.2.2105/Data/Configureeventlinebreaking
"How the Splunk platform determines event boundaries. The Splunk platform determines event boundaries in two phases: 1. Line breaking, which use the LINE_BREAKER setting to split the incoming stream of data into separate lines. By default, the LINE_BREAKER value is any sequence of newlines and carriage returns. In regular expression format, this is represented as the following string: ([\r\n]+)"
\r -- returns
\n -- line feeds (new line)
[] -- define a character class
() -- capturing group
+ -- apply to the whole group within ()
([\r\n])+ together, matches and captures any sequence of one or more newline characters.
A voting comment increases the vote count for the chosen answer by one.
Upvoting a comment with a selected answer will also increase the vote count towards that answer by one.
So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.
furiousjase
5 months, 1 week agoucsdmiami2020
4 months, 2 weeks agoNastyNutsu
1 month agokiranhar
6 months ago