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!

CX Day is Coming!

Customer Experience (CX) Day is on October 7th!! We're so excited to bring back another day full of wonderful ...

Strengthen Your Future: A Look Back at Splunk 10 Innovations and .conf25 Highlights!

The Big One: Splunk 10 is Here!  The moment many of you have been waiting for has arrived! We are thrilled to ...

Now Offering the AI Assistant Usage Dashboard in Cloud Monitoring Console

Today, we’re excited to announce the release of a brand new AI assistant usage dashboard in Cloud Monitoring ...