Splunk Search

How do I edit my search to get the average response time without using the transaction command?

nidhiagrawal
Explorer

I am trying to get average response time without the transaction command. Events are running into millions, so the search takes a lot of time.

Here is what I have:

index=myindex  "string to match"  | rex "messageId(?<myMsgId>[^\<]+)"  | rex "refToMessageId(?<myMsgId>[^\<]+)" | rex field=_raw "(?<fldDay>[\d\-]{10}).*\s\[\s[a-zA-Z0-9\-\:\.]" | stats earliest(_time) AS startTime, latest(_time) AS endTime, count as TotalEvents by fldDay, myMsgId | eval responseTime=endTime-startTime

It should be simple, but I'm a novice here. How do I get the average of response time?

Thanks in advance.

0 Karma
1 Solution

masonmorales
Influencer

It looks like you've already calculated the duration (response time) of each transaction using your eval. If you just want an average response time for everything, you can just do:

index=myindex "string to match" | rex "messageId(?<myMsgId>[^<]+)" | rex "refToMessageId(?<myMsgId>[^<]+)" | rex field=_raw "(?<fldDay>[d-]{10}).*s[s[a-zA-Z0-9-:.]" | stats earliest(_time) AS startTime, latest(_time) AS endTime, count as TotalEvents by fldDay, myMsgId | eval responseTime=endTime-startTime | stats avg(responseTime) as avgResponseTime

View solution in original post

0 Karma

nidhiagrawal
Explorer

Can I please ask a follow up question. how do I add the condition: calculate average only if TotalEvents > 1.

0 Karma

masonmorales
Influencer

It looks like you've already calculated the duration (response time) of each transaction using your eval. If you just want an average response time for everything, you can just do:

index=myindex "string to match" | rex "messageId(?<myMsgId>[^<]+)" | rex "refToMessageId(?<myMsgId>[^<]+)" | rex field=_raw "(?<fldDay>[d-]{10}).*s[s[a-zA-Z0-9-:.]" | stats earliest(_time) AS startTime, latest(_time) AS endTime, count as TotalEvents by fldDay, myMsgId | eval responseTime=endTime-startTime | stats avg(responseTime) as avgResponseTime
0 Karma
Career Survey
First 500 qualified respondents will receive a $20 gift card! Tell us about your professional Splunk journey.

Can’t make it to .conf25? Join us online!

Get Updates on the Splunk Community!

Can’t Make It to Boston? Stream .conf25 and Learn with Haya Husain

Boston may be buzzing this September with Splunk University and .conf25, but you don’t have to pack a bag to ...

Splunk Lantern’s Guide to The Most Popular .conf25 Sessions

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...

Unlock What’s Next: The Splunk Cloud Platform at .conf25

In just a few days, Boston will be buzzing as the Splunk team and thousands of community members come together ...