Splunk Enterprise Security

need some help in writing SPL for below scenerio

vikram1583
Explorer

i Have 2 source types each source type having asset_id field i want a search to display same asset_id that is in both source types

from that results i want to display nexpose_tag field for that asset_id from second source type

0 Karma

woodcock
Esteemed Legend

Like this:

(index="Index_A" AND sourcetype="sourcetype_A") OR (index="index_B" AND sourcetype=sourcetype_B")
| stats dc(sourcetype) AS sourcetypes valeues(nexpose_tag) AS nexpose_tag BY asset_id
| where sourcetypes=2
0 Karma

manjunathmeti
Champion

Hi @vikram1583, try this:

index=INDEXNAME (sourcetype=SOURCETYPE1 OR sourcetype=SOURCETYPE2)
| stats dc(sourcetype) AS sourcetypeCount values(nexpose_tag) AS nexpose_tag BY asset_id 
| where sourcetypeCount =2 
| fields asset_id, nexpose_tag
Get Updates on the Splunk Community!

Webinar Recap | Revolutionizing IT Operations: The Transformative Power of AI and ML ...

The Transformative Power of AI and ML in Enhancing Observability   In the realm of IT operations, the ...

.conf24 | Registration Open!

Hello, hello! I come bearing good news: Registration for .conf24 is now open!   conf is Splunk’s rad annual ...

ICYMI - Check out the latest releases of Splunk Edge Processor

Splunk is pleased to announce the latest enhancements to Splunk Edge Processor.  HEC Receiver authorization ...