Splunk Search

How to use a daily updated lookup table to search for new sourcetypes added in the past 24 hours?

krishanpatel
Engager

I want to create a search that displays any newly added sourcetypes in the past 24 hrs. I've created a report that outputs a lookup table and is scheduled to run/update once a day. My report search string is below:

... | inputlookup lookup.csv append=t | stats count by sourcetype | table sourcetype | outputlookup lookup.csv

I am struggling to figure out a way to search the lookup table for newly added sourcetypes. Does anyone know how I could do that? Or is there a better method in trying to accomplish this?

Tags (3)
1 Solution

lguinn2
Legend

I hesitate to say "you are doing it wrong" but stats is really an inefficient way to get a list of sourcetypes. The metadata command is extremely fast and gives you everything you need:

Your daily scheduled search could look like this:

| metadata type=sourcetypes | outputlookup lookup.csv

You can also figure out which sourcetypes are new by looking at the firstTime field:

| metadata type=sourcetypes | where firstTime > now()-86400

Not really sure why you even need the lookup table...

View solution in original post

lguinn2
Legend

I hesitate to say "you are doing it wrong" but stats is really an inefficient way to get a list of sourcetypes. The metadata command is extremely fast and gives you everything you need:

Your daily scheduled search could look like this:

| metadata type=sourcetypes | outputlookup lookup.csv

You can also figure out which sourcetypes are new by looking at the firstTime field:

| metadata type=sourcetypes | where firstTime > now()-86400

Not really sure why you even need the lookup table...

krishanpatel
Engager

Thank you. This is what I was looking for and is a much easier approach.

0 Karma

MuS
Legend

Hi krishanpatel,

try something like this:

sourcetype=* | search NOT [ | outputlookup lookup.csv ]

hope this helps to get you started...

cheers, MuS

Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...