Splunk Dev

Lookup table disappears after deleting all rows

nabeel652
Builder

I have a lookup table for exclusions. that updates when user clicks on a value and it is added in the lookup table. However, if the user clicks on the row in lookup table it is removed from the lookup.

It works fine but the problem is that when the user clicks on last row present in the lookup table the table disappears and I have to populate the lookup table again using:

| stats count | eval Ignore=""  | eval Publisher="" | eval Product="" | eval Append=""  | eval Version="" | fields - count| outputlookup exclusions.csv

Question is that can I add some code in my search to avoid this thing to happen. My search is:

| inputlookup exclusions  | append [| stats count | eval Publisher="Igor Pavlov" | eval Product="7-Zip 16.00 (x64 edition)" | eval Version = "16.00.00.0" | eval Ignore = 1  | eval Append="0"] | sort by Append  | dedup Publisher Product Version | where Append="1" | table Publisher Product Version Ignore Append | outputlookup exclusions.csv

All evals are drilldown tokens from the previous/same page.

Tags (1)
1 Solution

somesoni2
Revered Legend

Try like this

| inputlookup exclusions  | append [| stats count | eval Publisher="Igor Pavlov" | eval Product="7-Zip 16.00 (x64 edition)" | eval Version = "16.00.00.0" | eval Ignore = 1  | eval Append="0"] | sort by Append  | dedup Publisher Product Version | where Append="1" | table Publisher Product Version Ignore Append | appendpipe [ | stats count | where count=0 | eval Ignore=""  | eval Publisher="" | eval Product="" | eval Append=""  | eval Version="" | fields - count ]| outputlookup exclusions.csv 

View solution in original post

0 Karma

somesoni2
Revered Legend

Try like this

| inputlookup exclusions  | append [| stats count | eval Publisher="Igor Pavlov" | eval Product="7-Zip 16.00 (x64 edition)" | eval Version = "16.00.00.0" | eval Ignore = 1  | eval Append="0"] | sort by Append  | dedup Publisher Product Version | where Append="1" | table Publisher Product Version Ignore Append | appendpipe [ | stats count | where count=0 | eval Ignore=""  | eval Publisher="" | eval Product="" | eval Append=""  | eval Version="" | fields - count ]| outputlookup exclusions.csv 
0 Karma

DalJeanis
Legend

is that | inputlookup exclusions or | inputlookup exclusions.csv ?

0 Karma
Get Updates on the Splunk Community!

Introducing Splunk Enterprise 9.2

WATCH HERE! Watch this Tech Talk to learn about the latest features and enhancements shipped in the new Splunk ...

Adoption of RUM and APM at Splunk

    Unleash the power of Splunk Observability   Watch Now In this can't miss Tech Talk! The Splunk Growth ...

Routing logs with Splunk OTel Collector for Kubernetes

The Splunk Distribution of the OpenTelemetry (OTel) Collector is a product that provides a way to ingest ...