Splunk Enterprise Security

Can you help me count the following two files?

logloganathan
Motivator

Hi, i have two files

| inputlookup ABC | stat count 
 result=10

| inputlookup XYZ | stat count 
result=20

i want to get results as 30 by adding these two files

0 Karma
1 Solution

493669
Super Champion

Like this-

|inputlookup ABC|stats count|append[|inputlookup XYZ|stats count]|stats sum(count) as count

View solution in original post

0 Karma

493669
Super Champion

Like this-

|inputlookup ABC|stats count|append[|inputlookup XYZ|stats count]|stats sum(count) as count
0 Karma

sideview
SplunkTrust
SplunkTrust

A minor comment for you - this works great but inputlookup actually has its own append=t argument that you can use. And in this case it's better to use it, than to rely on the append command because append hits failsafe at 50,000 rows where it would truncate.

So long story short you can just do:
| inputlookup ABC | inputlookup XYZ append=t | stats count

logloganathan
Motivator

wow its working...wonderful answer

0 Karma

logloganathan
Motivator

Please move to answer

0 Karma

grantsmiley
Path Finder

This work

(search1) OR (search2) |inputlookup ABC |inputlookup XYZ |stats count

0 Karma

logloganathan
Motivator

thanks for your response but it not working

0 Karma
Get Updates on the Splunk Community!

Splunk Custom Visualizations App End of Life

The Splunk Custom Visualizations apps End of Life for SimpleXML will reach end of support on Dec 21, 2024, ...

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 ...