Splunk Search

CDR - Calculate number of Active Calls at any give time

hemantbhatta
Explorer

Hi, I am trying to calculate the number of Active Calls at any 'given time' from Call Detail Records (CDR). CDRs store the 'callConnect' and 'callDisconnect' time in a single CDR event. Logically speaking at any 'given time' the number of active calls = number of CDR events that have 'callDisconnect' > 'given time' (while evaluating all the CDR call records older than 'given time'). How can we implement this as Splunk search Querry? Any ideas. Thanks. HB.

Tags (1)
0 Karma
1 Solution

gkanapathy
Splunk Employee
Splunk Employee

You can use the concurrency command, and let's assume that callConnect is set as the Splunk event timestamp, i.e., _time:

sourcetype=mycdrs | eval dur = callDisconnect-_time | concurrency duration=dur

Depending on the format, you may have to apply the strptime() function to convert callDisconnect to epoch time (_time will already be in epoch time), but the above is pretty much it.

View solution in original post

gkanapathy
Splunk Employee
Splunk Employee

You can use the concurrency command, and let's assume that callConnect is set as the Splunk event timestamp, i.e., _time:

sourcetype=mycdrs | eval dur = callDisconnect-_time | concurrency duration=dur

Depending on the format, you may have to apply the strptime() function to convert callDisconnect to epoch time (_time will already be in epoch time), but the above is pretty much it.

hemantbhatta
Explorer

Thanks. Looks like it did the trick!!

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...