Splunk Enterprise

Two stats commands in same search

user93
Communicator

Hi,

I want to count two different stats and join them in the same resulting table. Can you remind me how to do this? The string is to complex to duplicate, but I'll illustrate what is there.

 

 

 

index=server application=app page=x OR page=y OR page=z

|stats count as pageloads by page
|stats distinctcount(id) as usercount by page
|lookup excel.csv page AS pagetitle OUTPUTNEW author,creationdate,lastmodified

|table pageloads,usercount,pagetitle,author,creationdate,lastmodified

 

 

 

Labels (1)
0 Karma
1 Solution

Richfez
SplunkTrust
SplunkTrust

Yep, just put them in the same stats command.

 

|stats count as pageloads, distinctcount(id) as usercount by page

You can have all sorts of them piled in there, as long as they're all "by" the same field, which in your case they all were "by page" so that's fine.

View solution in original post

Richfez
SplunkTrust
SplunkTrust

Yep, just put them in the same stats command.

 

|stats count as pageloads, distinctcount(id) as usercount by page

You can have all sorts of them piled in there, as long as they're all "by" the same field, which in your case they all were "by page" so that's fine.

user93
Communicator

Thanks @Richfez - My mistake was duplication of the by clause. 

So 

Incorrect

 

|stats count as pageloads by page, distinctcount(id) as usercount by page

 

 Correct

|stats count as pageloads, distinctcount(id) as usercount by page

 

Tags (1)
Get Updates on the Splunk Community!

Splunk Observability Cloud’s AI Assistant in Action Series: Analyzing and ...

This is the second post in our Splunk Observability Cloud’s AI Assistant in Action series, in which we look at ...

Elevate Your Organization with Splunk’s Next Platform Evolution

 Thursday, July 10, 2025  |  11AM PDT / 2PM EDT Whether you're managing complex deployments or looking to ...

Splunk Answers Content Calendar, June Edition

Get ready for this week’s post dedicated to Splunk Dashboards! We're celebrating the power of community by ...