I have events of the following format:
{ [-]
log: 2018-04-16 11:33:09 INFO Report:46 - Number of Records read from Input File [10000] , number of records Posted [10000] to topic [completed.processing]
stream: stdout
time: 2018-04-16T16:33:09.36532399Z
} }
Log is an extracted field and I want to extract the values "Number of records read from Input file and number of records posted" from within the field log and display it as a table of the following format:
Number of Input Records . Number of records posted
10000 10000
... View more