Splunk Search

How to create a fast report showing hosts, their indexes and lasttime using the metadata command and a lookup against a csv list of hosts?

hartfoml
Motivator

I segregate my data using indexes for each group. I have a csv with a list of hosts that cross several indexes.

I can find the hosts like this:

| metadata type=hosts | convert timeformat="%Y/%m/%d %T" ctime(*Time)   | join host [| inputlookup hosts_lookup.csv ]

I can find the ones in individual indexes like this:

| metadata type=hosts index=foo | convert timeformat="%Y/%m/%d %T" ctime(*Time)   | join host [| inputlookup hosts_lookup.csv ]

I want to create a report of systems and which index they are in, but I can't do this

| metadata type=hosts | convert timeformat="%Y/%m/%d %T" ctime(*Time)   | join host [| inputlookup hosts_lookup.csv ] | table host index lastTime

This search works but takes too long:

index=* | join host [| metadata type=hosts | convert timeformat="%Y/%m/%d %T" ctime(*Time)   | join host [| inputlookup hosts_lookup.csv ] ] | dedup host | table host index lastTime

How can i create a report that will run fast that can show the host, index, lastTime fields using the lookup table?

0 Karma

somesoni2
Revered Legend

For start try this (using tstats, will be much faster than regular query )

| tstats count WHERE index=* by index,host | join host [| metadata type=hosts | convert timeformat="%Y/%m/%d %T" ctime(*Time)   | join host [| inputlookup hosts_lookup.csv ] ] | dedup host | table host index lastTime
0 Karma

somesoni2
Revered Legend

What version of Splunk do you use? Does this lookup file configured to be updated daily?

0 Karma

hartfoml
Motivator

version 6.2.3

0 Karma

hartfoml
Motivator

This is have

| inputlookup hosts_lookup.csv | join type=left host [metadata type=hosts]

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