Reporting

report count from hosts in csv file INCLUDING hosts with count=0

stevenatmit
Explorer

I'm looking for a report that can import a csv file of hosts and display the event count for the past 7 days. This csv file may have systems that have never reported to splunk and thus may have a count of zero. I can get a report that list hosts with count > 0, but it won't list the ones where count = 0. Any help would be appreciated.

Tags (2)
0 Karma

stevenatmit
Explorer

I finally found something that works, but it is a slow way of doing it.

index=* [|inputcsv allhosts.csv] | stats count by host | stats count AS totalReportingHosts| appendcols [| inputlookup allhosts.csv | stats count AS totalAssets]

0 Karma

stevenatmit
Explorer

sure. thanks for the offer of help. my search looks like this

index=* [|inputcsv allhosts.csv] | stats count by host

and my csv file looks like this

host
goodhost1
goodhost2
unknownhost1

It reports counts from the "good" hosts, but won't report a 0 from the "unknown" host

0 Karma

somesoni2
Revered Legend

Assuming you have the csv file added as lookup table, try something like this

|inputcsv allhosts.csv | eval count=0 | join type=left host [search index=* [|inputcsv allhosts.csv] | stats count by host]
0 Karma

somesoni2
Revered Legend

My bad. try now.

0 Karma

stevenatmit
Explorer

that fails with 'unknown search command 'index'

0 Karma

richgalloway
SplunkTrust
SplunkTrust

If you're willing to share your existing query, we may be able to figure out why hosts with count=0 aren't showing up.

---
If this reply helps you, Karma would be appreciated.
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 ...