Timing of lookup table reference by alerts and reports

release date
2016-05-27
last updated
2016-05-02
version
Splunk Enterprise 9.0.4
Overview
This article describes how to reflect lookup table updates in real-time searches.
Reference information
content

Real-time search lookup table reference timing

When using a real-time search as an alert/report, the lookup table referenced will continue to be the one from the time the real-time search was first executed.

The update=true option is required to always reflect the latest lookup table in real-time search.

  • Without update=true option

Real-time search refers only to the first lookup table, and subsequent updates to the lookup table are not reflected in real-time search.

Search execution example) sourcetype=cc | lookup testlookup zz OUTPUT xx yy

  • If you have the update=true option

Real-time search always refers to the latest lookup table.

Search execution example) sourcetype=cc | lookup update=true testlookup zz OUTPUT xx yy

that's all