Splunk Search

Update lookup file values dynamically

bt149
Path Finder

I have a lookup file.  Lookup has "host", "count", "first_event" and "last_event" fields.  I want to run a search hourly that will update all the fields with fresh values and in the event that a "host" is not found in the search send an alert.

Any guidance would be appreciated.

Labels (1)
Tags (1)
0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi @bt149,

for the lookup population search you could try something like this:

<your_search>
| stats 
   count
   earliest(_time) AS first_event
   latest(_time) AS last_event
   BY host
| outputlookup your_lookup.csv

for the alert the fires eventual missing hosts, you could try:

<your_search>
| stats 
   count
   BY host
| append [ | your_lookup | eval count=0 | fields host count]
| stats 
   sum(count) AS count
   BY host
| where count=0

Ciao.

Giuseppe

0 Karma
Get Updates on the Splunk Community!

OpenTelemetry for Legacy Apps? Yes, You Can!

This article is a follow-up to my previous article posted on the OpenTelemetry Blog, "Your Critical Legacy App ...

UCC Framework: Discover Developer Toolkit for Building Technology Add-ons

The Next-Gen Toolkit for Splunk Technology Add-on Development The Universal Configuration Console (UCC) ...

.conf25 Community Recap

Hello Splunkers, And just like that, .conf25 is in the books! What an incredible few days — full of learning, ...