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!

Introducing the Splunk Community Dashboard Challenge!

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

Built-in Service Level Objectives Management to Bridge the Gap Between Service & ...

Wednesday, May 29, 2024  |  11AM PST / 2PM ESTRegister now and join us to learn more about how you can ...

Get Your Exclusive Splunk Certified Cybersecurity Defense Engineer Certification at ...

We’re excited to announce a new Splunk certification exam being released at .conf24! If you’re headed to Vegas ...