All Apps and Add-ons

Splunk App for Unix and Linux: How can compare the 2 servers and get the unique ones from list one?

pradipto
Explorer

I have two lists of servers from two queries:

Search 1 ==>

| metadata type=hosts index=os| search host=srt* OR host=c1a* OR host=c2a*|table host|rename host as HostNames

Search 2 ==>

index="os" sourcetype="ps" host=srt* OR host=c1a* OR host=c2a* | eval processexists=if(match(_raw, "puppet"), 1, 0)  | search processexists=1 |dedup host|table host|rename host as PuppetClients

Now I want to find the servers that are there in Search 1 and not in Search 2.

0 Karma
1 Solution

493669
Super Champion

try this:

| metadata type=hosts index=os| search host=srt* OR host=c1a* OR host=c2a*|table host| search NOT[search index="os" sourcetype="ps" host=srt* OR host=c1a* OR host=c2a* | eval processexists=if(match(_raw, "puppet"), 1, 0) | search processexists=1 |dedup host|table host]

View solution in original post

0 Karma

493669
Super Champion

try this:

| metadata type=hosts index=os| search host=srt* OR host=c1a* OR host=c2a*|table host| search NOT[search index="os" sourcetype="ps" host=srt* OR host=c1a* OR host=c2a* | eval processexists=if(match(_raw, "puppet"), 1, 0) | search processexists=1 |dedup host|table host]
0 Karma

pradipto
Explorer

Works fine

0 Karma

493669
Super Champion

glad to help:) please upvote as well

0 Karma

493669
Super Champion

have you tried it?

0 Karma
Get Updates on the Splunk Community!

Wondering How to Build Resiliency in the Cloud?

IT leaders are choosing Splunk Cloud as an ideal cloud transformation platform to drive business resilience,  ...

Updated Data Management and AWS GDI Inventory in Splunk Observability

We’re making some changes to Data Management and Infrastructure Inventory for AWS. The Data Management page, ...

Introducing the Splunk Community Dashboard Challenge!

Welcome to Splunk Community Dashboard Challenge! This is your chance to showcase your skills in creating ...