sample my log format: first line -> 320 634
second line -> 236 -
third line -> 234 123
if i make grok filter like:
%{NUMBER:response} %{NUMBER:byte}
then second line makes error.
i tried
%{NUMBER:response} (?:%{NUMBER:byte}|-)
also, but it failed.
So, how can i fix it?