Getting Data In

how get a single output from 2 different "stats count"

antoniofacchi
New Member

Good morning,

with the following search:
index="app_dynatrace" sourcetype="pa" application="Saipemcom Prod" "dimensions.Apdex performance zone for User Actions" !=unknown
| append [search index="app_dynatrace" sourcetype="visit" application="Saipemcom Prod"
| spath "dimensions.Visits - Geo Information" output=Country_visit]| spath "dimensions.Apdex performance zone for User Actions" output=Apdex_val|spath "dimensions.Country of Visits" output=Country1 | rex field=Country1 "(?\S+(\s\w
))(\s+-)?"
|eval Country_useraction=trim(CountryS)|fields Country_useraction, Country_visit

I'd like a single output like:

Country Visit Useraction
Italy 800 1000
USA 100 123
.... .... .........

Many thanks for the support.
Regards
Antonio

Tags (1)
0 Karma
1 Solution

gcusello
SplunkTrust
SplunkTrust

Hi antoniofacchi,
I cannot replicate your search, but if you have the same output of both your searches, you can merge them, see this example:

index=index1
| stats count AS Total1 BY host
| append [ search index=index2 | stats count AS Total2 BY host ]
| stats values(Total1) AS Total1 values(Total2) AS Total2 BY host

It's important to have in both main and sub searches the same BY field and assign a name to each output (or outputs) of the stats command.
In this way you have on the same row values of Total1 and Total2 for each host.

Bye.
Giuseppe

View solution in original post

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi antoniofacchi,
I cannot replicate your search, but if you have the same output of both your searches, you can merge them, see this example:

index=index1
| stats count AS Total1 BY host
| append [ search index=index2 | stats count AS Total2 BY host ]
| stats values(Total1) AS Total1 values(Total2) AS Total2 BY host

It's important to have in both main and sub searches the same BY field and assign a name to each output (or outputs) of the stats command.
In this way you have on the same row values of Total1 and Total2 for each host.

Bye.
Giuseppe

0 Karma

antoniofacchi
New Member

Hi Giuseppe,

thank you for the suggestion,it works very well.

regards
Antonio

0 Karma

gcusello
SplunkTrust
SplunkTrust

Hi Antonio,
if you're satisfied by this answer accept or upvote it.
Ciao.
Giuseppe

0 Karma

anjambha
Communicator

Hi antoniofacchi,

You can use join command to get the same output .. refer below link

http://docs.splunk.com/Documentation/Splunk/7.0.0/SearchReference/Join

antoniofacchi
New Member

HI anjambha,

thank you for the suggetion,it works very well.

regards
Antonio

0 Karma
Get Updates on the Splunk Community!

Index This | What goes away as soon as you talk about it?

May 2025 Edition Hayyy Splunk Education Enthusiasts and the Eternally Curious!  We’re back with this month’s ...

What's New in Splunk Observability Cloud and Splunk AppDynamics - May 2025

This month, we’re delivering several new innovations in Splunk Observability Cloud and Splunk AppDynamics ...

Getting Started with Splunk Artificial Intelligence, Insights for Nonprofits, and ...

Splunk Lantern is a Splunk customer success center that provides advice from Splunk experts on valuable data ...