Splunk Search

Combine multiple searches with no relation in one table

igschloessl
Explorer

I have different count searches that I want to show in one report so I can send it to me as a csv file.

index=proxy host=server1 | stats count as output1
| append [search index=mail host=server2 | stats count as output2] 
| append [search index=fw host=server3 | stats count as output3]
| table output1 output2 output3

This output generates 3 columns and three rows. How can I put the count values in one row?
I couldnt update a picture so I tried to make a table:

output1 | output2 | output3
123----------------------------

-------------576---------------
---------------------------38

Tags (3)
0 Karma
1 Solution

493669
Super Champion

Hi @igschloessl ,
try this:

|stats values(*) as *

It will get all values in single row

View solution in original post

0 Karma

493669
Super Champion

Hi @igschloessl ,
try this:

|stats values(*) as *

It will get all values in single row

0 Karma
Get Updates on the Splunk Community!

Stay Connected: Your Guide to May Tech Talks, Office Hours, and Webinars!

Take a look below to explore our upcoming Community Office Hours, Tech Talks, and Webinars this month. This ...

They're back! Join the SplunkTrust and MVP at .conf24

With our highly anticipated annual conference, .conf, comes the fez-wearers you can trust! The SplunkTrust, as ...

Enterprise Security Content Update (ESCU) | New Releases

Last month, the Splunk Threat Research Team had two releases of new security content via the Enterprise ...