Splunk Search

How to categorize phone numbers in VOIP PABX logs in Splunk ?

dfigurello
Communicator

Hi Splunkers,

We have an VOIP PABX that is generating logs. Those logs are being indexed by Splunk. In those logs I have a "destination" field that shows the phone number dialed but the customer needs to classify the numbers dialed as local phone, other state number, mobile number, free call and so on. But I’m facing problems on how to categorize those numbers because they are variables (eg.: emergency number is 190, remote state number can be 1120023004 and mobile phone can be 992221414). Could you help me to find the best way to categorize those logs?

Cheers!

0 Karma
1 Solution

sk314
Builder

How do you differentiate between remote state number and mobile phone number as they both are 10 digits in length?

If the state number always begins with 112, you could pipe in an 'eval' statement like so:

| eval number_category = case(match(destination_field, "\d{3}"), "emergency_number", match(destination_field, "121\d{7}"), "remote_state_number", match(destination_field, "(?!112)\d{10}"), "mobile_phone")

Assuming destination_field is the field that captures your number.

View solution in original post

sk314
Builder

How do you differentiate between remote state number and mobile phone number as they both are 10 digits in length?

If the state number always begins with 112, you could pipe in an 'eval' statement like so:

| eval number_category = case(match(destination_field, "\d{3}"), "emergency_number", match(destination_field, "121\d{7}"), "remote_state_number", match(destination_field, "(?!112)\d{10}"), "mobile_phone")

Assuming destination_field is the field that captures your number.

dfigurello
Communicator

Hi sk314!
It's worked!

Thanks!

0 Karma
Get Updates on the Splunk Community!

Continuing Innovation & New Integrations Unlock Full Stack Observability For Your ...

You’ve probably heard the latest about AppDynamics joining the Splunk Observability portfolio, deepening our ...

Monitoring Amazon Elastic Kubernetes Service (EKS)

As we’ve seen, integrating Kubernetes environments with Splunk Observability Cloud is a quick and easy way to ...

Cloud Platform & Enterprise: Classic Dashboard Export Feature Deprecation

As of Splunk Cloud Platform 9.3.2408 and Splunk Enterprise 9.4, classic dashboard export features are now ...