All Apps and Add-ons

How to use inputlookup with realtime search

jedatt01
Builder

I want to create a search that populates a map with real-time data. But I also have data in a lookup table that I want to include using the inputlookup command. I want the data from the lookup to populate before the realtime search begins so the first points that populate on the map are from the lookup table. Does anyone know how this can be accomplished?

0 Karma
1 Solution

martin_mueller
SplunkTrust
SplunkTrust

You can use inputlookup in a real-time search as long as you set append=true. Here's an example:

  index=* OR index=_* | stats count by index | inputlookup append=true monitored_indexes.csv | fillnull | stats max(count) as count by index

Run that over a real-time window and you'll have the count of events from the search itself and the list of indexes without events filled in with count=0 by the inputlookup | fillnull | stats.

View solution in original post

martin_mueller
SplunkTrust
SplunkTrust

You can use inputlookup in a real-time search as long as you set append=true. Here's an example:

  index=* OR index=_* | stats count by index | inputlookup append=true monitored_indexes.csv | fillnull | stats max(count) as count by index

Run that over a real-time window and you'll have the count of events from the search itself and the list of indexes without events filled in with count=0 by the inputlookup | fillnull | stats.

jedatt01
Builder

This worked for me. Thanks!

0 Karma
Get Updates on the Splunk Community!

Database Performance Sidebar Panel Now on APM Database Query Performance & Service ...

We’ve streamlined the troubleshooting experience for database-related service issues by adding a database ...

IM Landing Page Filter - Now Available

We’ve added the capability for you to filter across the summary details on the main Infrastructure Monitoring ...

Dynamic Links from Alerts to IM Navigators - New in Observability Cloud

Splunk continues to improve the troubleshooting experience in Observability Cloud with this latest enhancement ...