Alerting

Merge two events. One event has Request which server received and other event has response time.

Shashank_87
Explorer

I have set of events which can be distinguished based on the ID. So basically a event with this ID where we get the requested content and another event with same ID where we get the response time and status code.
I want to calculate the response time for each page requested. Something like a table which contains two columns -
1. requested content
2. it's response time.
Please if someone can help me do that. I have written the below search to retrieve the ID -

index=index=* source="/request.log"| rex field=_raw "\[(?<ID>[^\]]+)" 
Tags (1)
0 Karma
1 Solution

DalJeanis
Legend

We've marked your code and put back the <ID> that was dropped by the interface.

Assuming that we've corrected your code correctly, then something like this should work. Put the list of fields that you want to keep from either kind of event, and this code should get you your result.

 index=index=* source="/request.log"
| fields  ... list the fields that you want to keep from any event...
| rex field=_raw "\[(?<ID>[^\]]+)" 
| stats values(*) as * by ID

The above code assumes that there will only ever be one of each kind of event. If there may be more, then there are a couple of other patterns to use.

View solution in original post

0 Karma

DalJeanis
Legend

We've marked your code and put back the <ID> that was dropped by the interface.

Assuming that we've corrected your code correctly, then something like this should work. Put the list of fields that you want to keep from either kind of event, and this code should get you your result.

 index=index=* source="/request.log"
| fields  ... list the fields that you want to keep from any event...
| rex field=_raw "\[(?<ID>[^\]]+)" 
| stats values(*) as * by ID

The above code assumes that there will only ever be one of each kind of event. If there may be more, then there are a couple of other patterns to use.

0 Karma
Get Updates on the Splunk Community!

What's New in Splunk Cloud Platform 9.3.2411?

Hey Splunky People! We are excited to share the latest updates in Splunk Cloud Platform 9.3.2411. This release ...

Buttercup Games: Further Dashboarding Techniques (Part 6)

This series of blogs assumes you have already completed the Splunk Enterprise Search Tutorial as it uses the ...

Technical Workshop Series: Splunk Data Management and SPL2 | Register here!

Hey, Splunk Community! Ready to take your data management skills to the next level? Join us for a 3-part ...