FilebeatMultiline: различия между версиями
Sirmax (обсуждение | вклад) |
Sirmax (обсуждение | вклад) |
||
Строка 105: | Строка 105: | ||
</PRE> |
</PRE> |
||
become <B>"acb"</B> and <B>"deb"</B> |
become <B>"acb"</B> and <B>"deb"</B> |
||
− | |||
− | =Тестовые данные= |
||
− | <PRE> |
||
− | D, [2021-08-08T13:17:02.482811 #7] DEBUG -- Line 1 |
||
− | E, [2021-08-08T13:17:02.484029 #7] ERROR -- Line 2 |
||
− | D, [2021-08-08T13:17:02.484108 #7] DEBUG -- Multiline 1 |
||
− | Multiline 1 1 |
||
− | Multiline 1 2 |
||
− | Multiline 1 3 |
||
− | D, [2021-08-08T13:17:02.486820 #7] DEBUG -- Multiline 2 |
||
− | Multiline 2 1 |
||
− | Multiline 2 2 |
||
− | Multiline 2 3 |
||
− | E, [2021-08-08T13:17:02.484029 #7] ERROR -- Line 3 |
||
− | </PRE> |
||
=Ссылки= |
=Ссылки= |
Версия 15:57, 10 августа 2021
Filebeat multiline
С этой темой вечная проблема - разобрался, настроил и забыл. Через пол года нужно разбираться заново, и что б сэкономить время решил сделать заметку.
Скорее всего так же ведет себя и Logstash
Параметры
Параметры которые определяют поведение и их возможные значения:
- multiline.negate
- true
- false
- multiline.match
- before
- after
Append / Prepend
- Append - добавить в конец
- Prepend - добавить в начало
Случай 1
- pattern = ^b
- multiline.negate = false
- multiline.match = after
Описание
Consecutive lines that match the pattern are appended to the previous line that doesn’t match.
Последующие строки соответвуют паттерну добавляются в конец к предыдущей строке которая не соответвует
Lines
a b b c b b
become "abb" and "cbb"
Проверка на реальных данных
cat tesing.log | jq .application_data.ruby.log_message
"Line 1" "Line 2" "Multiline 1\nMultiline 1 1\nMultiline 1 2\nMultiline 1 3" "Multiline 2\nMultiline 2 1\nMultiline 2 2\nMultiline 2 3" "Line 3"
Случай 2
- pattern = ^b
- multiline.negate: false
- multiline.match: before
Consecutive lines that match the pattern are prepended to the next line that doesn’t match.
Lines
b b a b b c
become "bba" and "bbc"
Случай 3
- pattern = ^b
- multiline.negate = true
- multiline.match = after
Consecutive lines that don’t match the pattern are appended to the previous line that does match.
Последующие строки которые НЕ соответствуют паттерну присоединяются к предыдущей строке которая НЕ соответствует паттерну
Lines
b a c b d e
become "bac" and "bde"
Случай 4
- pattern = ^b
- multiline.negate: true
- multiline.match: before
Consecutive lines that don’t match the pattern are prepended to the next line that does match.
Lines
a c b d e b
become "acb" and "deb"