Splunk Search

Extract last field from pair of lines in a log file

smurf4568
New Member

Data looks like this

# grep 28969 request.log
22/Jul/2016:15:09:54 +0200 [28969] -> GET /libs/granite/csrf/token.json HTTP/1.1
22/Jul/2016:15:09:54 +0200 [28969] <- 200 application/json 4ms

[xxxxxx] is the common (field extracted as RequestID)

lines where -> GET exist, I want to return the URL (field extracted as URL)
lines where <- [0-9][0-9][0-9] is present, I want to return just the final field (4ms) as RequestTime

Result should look like

28969 /libs/granite/csrf/token.json 4ms

0 Karma

sundareshr
Legend

Or this

... | rex "GET\s(?<URL>[^\s]+)" | rex "(?<RequestTime>\w+)$" | stats values(URL) as URL values(RequestTime) as RequestTime by RequestID
0 Karma

somesoni2
SplunkTrust
SplunkTrust

Try like this

your base search | rex "\]\s(-\>\s+GET+\s(?<URL>[^\s]+)" | rex "\]\s(-\>\s+([0]{3})+\s([^\s]+)(?<RequestTime>\w+)" | stats values(URL) as URL values(RequestTime) as RequestTime by RequestID
0 Karma
Get Updates on the Splunk Community!

Welcome to the Splunk Community!

(view in My Videos) We're so glad you're here! The Splunk Community is place to connect, learn, give back, and ...

Tech Talk | Elevating Digital Service Excellence: The Synergy of Splunk RUM & APM

Elevating Digital Service Excellence: The Synergy of Real User Monitoring and Application Performance ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...