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
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.
Get Updates on the Splunk Community!

Tech Talk Recap | Mastering Threat Hunting

Mastering Threat HuntingDive into the world of threat hunting, exploring the key differences between ...

Observability for AI Applications: Troubleshooting Latency

If you’re working with proprietary company data, you’re probably going to have a locally hosted LLM or many ...

Splunk AI Assistant for SPL vs. ChatGPT: Which One is Better?

In the age of AI, every tool promises to make our lives easier. From summarizing content to writing code, ...