Splunk Search

How to create a search to find expected hosts that are not reporting to Splunk?

SecurityIsMyMid
Explorer

I'm looking to create a report that finds expected hosts not reporting to Splunk without using the Macro. Anyone have any suggestions?

TIA

0 Karma

woodcock
Esteemed Legend

Run this search once by hand for ALL TIME

| tstats values(host) AS host WHERE index=* OR index=_* | outputcsv MyHostList.csv

Schedule this to run at least once every day:

| inputcsv MyHostList.csv | append [| tstats values(host) AS host WHERE index=* OR index=_*] | stats values(host) AS host | outputcsv MyHostList.csv

Then run this search as an alert:

| tstats values(host) AS host WHERE index=* OR index=_*  | eval dataset="current" | appendpipe [|inputcsv MyHostList.csv | eval dataset="expected"] | stats dc(dataset) AS numDatasets values(dataset) AS dataset BY host | where numDatasets=1 AND dataset="expected"
0 Karma

somesoni2
Revered Legend

Do you have list of expected hosts somewhere in Splunk?

0 Karma

SecurityIsMyMid
Explorer

Basically have a list and it is populating in Incident Review. Im looking to customize the report without the macro Splunk uses

0 Karma

SecurityIsMyMid
Explorer

Yes, I have an asset list and a populated is_expected field for assets

0 Karma
Get Updates on the Splunk Community!

.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 ...

Introducing the 2024 SplunkTrust!

Hello, Splunk Community! We are beyond thrilled to announce our newest group of SplunkTrust members!  The ...