Building for the Splunk Platform

Stats (count(x) as countX, count(y) as countY) BY FIELD X

JgTheGreat
Engager

Hi,

As the title suggests, I am after a query which gives me both the values of count(x) and count(y) by fieldX to be used later on in queries.

Is this possible?

Virtual beer and kudos for the best answer.

Kr,

0 Karma
1 Solution

cmerriman
Super Champion

If I understand what you're looking for, you have two fields, which likely aren't in 100% of events, otherwise the counts would be the same.

Try something like this to get counts when fields equal a certain value:

|stats count(eval(field="x")) as x_count count(eval(field="y")) as y_count by fieldX

Or this to just count how many events are in a field called y and a field called x

|stats count(x) as x_count count(y) as y_count by fieldX

View solution in original post

cmerriman
Super Champion

If I understand what you're looking for, you have two fields, which likely aren't in 100% of events, otherwise the counts would be the same.

Try something like this to get counts when fields equal a certain value:

|stats count(eval(field="x")) as x_count count(eval(field="y")) as y_count by fieldX

Or this to just count how many events are in a field called y and a field called x

|stats count(x) as x_count count(y) as y_count by fieldX
Get Updates on the Splunk Community!

Admin Your Splunk Cloud, Your Way

Join us to maximize different techniques to best tune Splunk Cloud. In this Tech Enablement, you will get ...

Cloud Platform | Discontinuing support for TLS version 1.0 and 1.1

Overview Transport Layer Security (TLS) is a security communications protocol that lets two computers, ...

New Customer Testimonials

Enterprises of all sizes and across different industries are accelerating cloud adoption by migrating ...