-
My Windows application is using the log4net library to generate log files. The logs contain blank lines and entries with the word "Setting:" along with the DEBUG entries. Here's a sample of the logs:
Can I use the Filter transform to exclude blank lines and entries containing the word "Setting:" ? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Hi @marketier ! You can use the These also seem like they might be multiline logs? If so, you could also look at the multiline configuration for the
As one event. Assuming that I'm correct that these are multiline logs and not just unformatted log lines. |
Beta Was this translation helpful? Give feedback.
Hi @marketier !
You can use the
filter
transform to filter out lines based on defined conditions.These also seem like they might be multiline logs? If so, you could also look at the multiline configuration for the
file
source to read the multiline log:As one event. Assuming that I'm correct that these are multiline logs and not just unformatted log lines.