Hi,
Lets say I have a single log file with heterogeneous entries like this
....
[time] methodName parameter1 parameter2 parameter3
....
[time] networkCall 200 4000
.....
[time] methodName parameter1 parameter2 parameter3
....
[time] networkName 200 4300
.....
Now there are two types of logs here. One I would like to be mode as method, parameters etc
and other I would like to name, response_code and response_time.
How can I convert these information into useful indexes in ES for analysis.
How can build my filter block to achieve this.