Try this run anywhere search
| makeresults
| eval _raw="[22/Mar/2018:17:06:23 -0700] id 100 “GET /URL1” 200 276
[22/Mar/2018:17:06:23 -0700] id 101 “GET /URL2” 200 276
[22/Mar/2018:17:06:23 -0700] id 102 “GET /URL3” 200 276"
| rex max_match=0 "id\s+(?<id>\d+)\s+\“\w+\s+\/(?<url>\w+)"
| eval c=mvzip(id,url)
| mvexpand c
| rex field=c "(?<id>[^\,]+)\,(?<url>.*)"
| table id url
In your environment, try
<your base search>
| rex max_match=0 "id\s+(?<id>\d+)\s+\“\w+\s+\/(?<url>\w+)"
| eval c=mvzip(id,url)
| mvexpand c
| rex field=c "(?<id>[^\,]+)\,(?<url>.*)"
| table id url
let me know if this helps!
... View more