I have a log looking like:
[2020-09-18 12:34 smth1=38 smth2=125 ... ]
and I want "smth1" to be a field name and "38" its value, what would be best way to do it considering that "smth1" might be different each time?
%{TIMESTAMP_ISO8601:time}%{SPACE}smth1=%{NUMBER:smth1:float} would be hardcoded way I want to avoid.