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!

Build Scalable Security While Moving to Cloud - Guide From Clayton Homes

 Clayton Homes faced the increased challenge of strengthening their security posture as they went through ...

Mission Control | Explore the latest release of Splunk Mission Control (2.3)

We’re happy to announce the release of Mission Control 2.3 which includes several new and exciting features ...

Cloud Platform | Migrating your Splunk Cloud deployment to Python 3.7

Python 2.7, the last release of Python 2, reached End of Life back on January 1, 2020. As part of our larger ...