Hi I want to extract highlighted part
You can use below rex. Which will fetch the highlighted context
| rex "\w+\s+\d+\s+\d{2}:\d{2}:\d{2}\s+(?<result>[^\s]+)"
Hi @Siddharthnegi ,
please try this:
| rex "^\w+\s\d+\s\d+:\d+:\d+\s(?<ip>\d+\.\d+\.\d+\.\d+)"
that you can test at https://regex101.com/r/Ha7ifi/1
Ciao.
Giuseppe