Splunk Search

Foreign key

yurykiselev
Path Finder

Hi!
I have two indexes: patients and examination

patients: | id name | gender | date_of_birth |
examination: | user_id | exam_type |

How could I get a table of all examinations for males?
Thank you!

Tags (2)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi yurykiselev,
there are many choices: join, transaction o stats:
join

index=examination
| rename user_id AS id_name
| join id_name type=left [ search index=patients | fields id_name gender date_of_birth ]
| table _time user_id gender date_of_birth exam_type 

transaction

index=examination OR  index=patients
| rename user_id AS id_name
| transaction id_name 
| table _time user_id gender date_of_birth exam_type 

stats

index=examination OR  index=patients
| rename user_id AS id_name
| stats values(gender) AS gender values(date_of_birth) As date_of_birth values(exam_type) AS exam_type by user_id 

Stats is the quickest.

Bye.
Giuseppe

View solution in original post

niketn
Legend

Is id_name the foreign key? i.e. can we correlate id_name and user_id?

If so you can create a field alias in one of the indexes to be the same as that in the other which is similar to,

| rename id_name as user_id

PS: Once you create Field Alias you will not need rename command.

(index=patient AND id_name=* gender="male") OR (index=examination AND user_id=*)
| rename id_name as user_id
| stats values(examination) as examinations by user_id
____________________________________________
| makeresults | eval message= "Happy Splunking!!!"
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi yurykiselev,
there are many choices: join, transaction o stats:
join

index=examination
| rename user_id AS id_name
| join id_name type=left [ search index=patients | fields id_name gender date_of_birth ]
| table _time user_id gender date_of_birth exam_type 

transaction

index=examination OR  index=patients
| rename user_id AS id_name
| transaction id_name 
| table _time user_id gender date_of_birth exam_type 

stats

index=examination OR  index=patients
| rename user_id AS id_name
| stats values(gender) AS gender values(date_of_birth) As date_of_birth values(exam_type) AS exam_type by user_id 

Stats is the quickest.

Bye.
Giuseppe

yurykiselev
Path Finder

Thank you all!

0 Karma
Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...