Splunk Search

Need solution on search query

dinesh001kumar
Explorer

I am having two index( index A and index B). Here I need to measure response time of topup of prepaid or postpaid number with help of transaction ID.

From index A I can filter where the transaction is prepaid or postpaid,index A contains(customer ID, Type(Prepaid or Postpaid).

In indexB we have two logs one is request log and other is response log.

With help of customer ID from Index A I need to find the transaction ID from Request log since customer ID is not available in response log. Once we get the transaction ID, we need to substract the time stamp (Response log time- Request log time).

Index A. Log pattern---> _timestamp, customerID,type

Index B----> contains request and response log.

Request log pattern---> timestamp, transactionID, customer ID

Response log pattern--->timestamp, transactionID,status.

 

Method to measure --> From index A we need to get customerID and then go to index B to find out the transaction ID from Request log. With help of transactionID need to subtract the timestamp between response and request log from index B

Please help us how we can proceed,in SPL query.

Labels (1)
0 Karma

ITWhisperer
SplunkTrust
SplunkTrust
| eval request_time=if(isnotnull(transactionID) AND isnotnull(customerID), time, null())
| eval response_time=if(isnotnull(transactionID) AND isnull(customerID), time, null())
| eventstats values(request_time) as request_time values(response_time) as response_time values(customerID) as customerID by transactionID
| eventstats values(type) as type by customerID
| stats values(request_time) as request_time values(response_time) as response_time values(status) as status values(type) as type by customerID transactionID

richgalloway
SplunkTrust
SplunkTrust

This would more efficient if indexA was a lookup table, but this query should get you started.  Others may bristle at the use of join, but they are welcome to submit alternatives.  🙂

index=indexb OR index=indexa
| stats values(*) as * by transactionID
| join customerID 
    [search index=indexa]
| table timestamp customerID transactionID status type

 

---
If this reply helps you, Karma would be appreciated.
0 Karma
Got questions? Get answers!

Join the Splunk Community Slack to learn, troubleshoot, and make connections with fellow Splunk practitioners in real time!

Meet up IRL or virtually!

Join Splunk User Groups to connect and learn in-person by region or remotely by topic or industry.

Get Updates on the Splunk Community!

[Puzzles] Solve, Learn, Repeat: Character substitutions with Regular Expressions

This challenge was first posted on Slack #puzzles channelFor BORE at .conf23, we had a puzzle question which ...

Splunk Community Badges!

  Hey everyone! Ready to earn some serious bragging rights in the community? Along with our existing badges ...

[Puzzles] Solve, Learn, Repeat: Matching cron expressions

This puzzle (first published here) is based on matching timestamps to cron expressions.All the timestamps ...