Event stream parsing as a single line
You can configure the probe to parse the event stream as a single line with tokens separated by token delimiters.
To specify that the probe parses the event stream as a single line, set the ParserSingleLines property to true and specify the delimiter that separates tokens using the ParserElementDelimiter property. To specify name value-pair delimiters, use the ParserNVPDelimiter property.
For example, if ParserElementDelimiter property is set to |, and the probe receives the following line:
"Hostname|PortNumber|Summary"
Then the probe parses the line into the following tokens:
Token1="Hostname",Token2="PortNumber",Token3="Summary"
For name value-pair example, if ParserElementDelimiter property is set to |, ParserNVPDelimiter property is set to =, and the probe receives the following line:
"Hostname=texth|PortNumber=1234|Summary=texts"
Then the probe parses the line into the following tokens:
Token1="Hostname=texth",Token2="PortNumber=1234",Token3="Summary=texts"
NVP_Hostname=texth
NVP_PortNumber=1234
NVP_Summary=texts